2016-01-07 15:11:47 -08:00
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
2015-12-17 15:04:18 -08:00
|
|
|
namespace Microsoft.Extensions.DependencyModel
|
|
|
|
{
|
|
|
|
internal class DependencyContextStrings
|
|
|
|
{
|
|
|
|
internal const char VersionSeperator = '/';
|
|
|
|
|
|
|
|
internal const string CompileTimeAssembliesKey = "compile";
|
|
|
|
|
2016-03-01 15:11:52 -08:00
|
|
|
internal const string RuntimeAssembliesKey = "runtime";
|
|
|
|
|
|
|
|
internal const string RuntimeTargetPropertyName = "runtimeTarget";
|
2015-12-17 15:04:18 -08:00
|
|
|
|
|
|
|
internal const string LibrariesPropertyName = "libraries";
|
|
|
|
|
|
|
|
internal const string TargetsPropertyName = "targets";
|
|
|
|
|
|
|
|
internal const string DependenciesPropertyName = "dependencies";
|
|
|
|
|
|
|
|
internal const string Sha512PropertyName = "sha512";
|
|
|
|
|
|
|
|
internal const string TypePropertyName = "type";
|
|
|
|
|
|
|
|
internal const string ServiceablePropertyName = "serviceable";
|
2015-12-21 10:36:20 -08:00
|
|
|
|
|
|
|
internal const string CompilationOptionsPropertName = "compilationOptions";
|
|
|
|
|
|
|
|
internal const string DefinesPropertyName = "defines";
|
|
|
|
|
|
|
|
internal const string LanguageVersionPropertyName = "languageVersion";
|
|
|
|
|
|
|
|
internal const string PlatformPropertyName = "platform";
|
|
|
|
|
|
|
|
internal const string AllowUnsafePropertyName = "allowUnsafe";
|
|
|
|
|
|
|
|
internal const string WarningsAsErrorsPropertyName = "warningsAsErrors";
|
|
|
|
|
|
|
|
internal const string OptimizePropertyName = "optimize";
|
|
|
|
|
|
|
|
internal const string KeyFilePropertyName = "keyFile";
|
|
|
|
|
|
|
|
internal const string DelaySignPropertyName = "delaySign";
|
|
|
|
|
|
|
|
internal const string PublicSignPropertyName = "publicSign";
|
|
|
|
|
2016-03-02 16:24:54 -08:00
|
|
|
internal const string DebugTypePropertyName = "debugType";
|
|
|
|
|
2015-12-21 10:36:20 -08:00
|
|
|
internal const string EmitEntryPointPropertyName = "emitEntryPoint";
|
2016-01-08 11:03:14 -08:00
|
|
|
|
|
|
|
internal const string GenerateXmlDocumentationPropertyName = "xmlDoc";
|
2016-03-01 15:11:52 -08:00
|
|
|
|
|
|
|
internal const string PortablePropertyName = "portable";
|
|
|
|
|
|
|
|
internal const string RuntimeTargetNamePropertyName = "name";
|
|
|
|
|
|
|
|
internal const string RuntimesPropertyName = "runtimes";
|
2016-03-02 15:31:13 -08:00
|
|
|
|
|
|
|
internal const string RuntimeTargetsPropertyName = "runtimeTargets";
|
|
|
|
|
|
|
|
internal const string RidPropertyName = "rid";
|
|
|
|
|
|
|
|
internal const string AssetTypePropertyName = "assetType";
|
|
|
|
|
|
|
|
internal const string RuntimeAssetType = "runtime";
|
|
|
|
|
|
|
|
internal const string NativeAssetType = "native";
|
2016-03-07 10:51:40 -08:00
|
|
|
|
|
|
|
internal const string ResourceAssembliesPropertyName = "resources";
|
|
|
|
|
|
|
|
internal const string LocalePropertyName = "locale";
|
2015-12-17 15:04:18 -08:00
|
|
|
}
|
2016-03-01 15:11:52 -08:00
|
|
|
}
|