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";
|
|
|
|
|
|
|
|
internal const string RunTimeAssembliesKey = "runtime";
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
|
|
|
internal const string EmitEntryPointPropertyName = "emitEntryPoint";
|
2016-01-08 11:03:14 -08:00
|
|
|
|
|
|
|
internal const string GenerateXmlDocumentationPropertyName = "xmlDoc";
|
2015-12-17 15:04:18 -08:00
|
|
|
}
|
|
|
|
}
|