mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
16 lines
940 B
C#
16 lines
940 B
C#
namespace ivinject.Features.Packaging.Models;
|
|
|
|
internal static class InfoPlistDictionaryKeys
|
|
{
|
|
internal const string UiKitSupportedDevicesKey = "UISupportedDevices";
|
|
internal const string UiKitSupportsDocumentBrowserKey = "UISupportsDocumentBrowser";
|
|
internal const string UiKitFileSharingEnabledKey = "UIFileSharingEnabled";
|
|
|
|
internal const string CoreFoundationBundleIdentifierKey = "CFBundleIdentifier";
|
|
internal const string CoreFoundationBundleExecutableKey = "CFBundleExecutable";
|
|
internal const string WatchKitCompanionAppBundleIdentifierKey = "WKCompanionAppBundleIdentifier";
|
|
internal const string NextStepExtensionKey = "NSExtension";
|
|
internal const string NextStepExtensionPointIdentifierKey = "NSExtensionPointIdentifier";
|
|
internal const string NextStepExtensionAttributesKey = "NSExtensionAttributes";
|
|
internal const string WatchKitAppBundleIdentifierKey = "WKAppBundleIdentifier";
|
|
} |