90 references to PropertyNames
Microsoft.CodeAnalysis.ExternalAccess.HotReload (1)
Api\HotReloadMSBuildWorkspace.ProjectFileInfoProvider.cs (1)
45
getBuildProjects(projectPath).instances.SelectAsArray(static instance => instance.GetPropertyValue(
PropertyNames
.TargetPath)));
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (89)
Build\ProjectBuildManager.cs (15)
31
{
PropertyNames
.DesignTimeBuild, bool.TrueString },
35
{
PropertyNames
.NonExistentFile, "__NonExistentSubDir__\\__NonExistentFile__" },
42
{
PropertyNames
.BuildProjectReferences, bool.FalseString },
43
{
PropertyNames
.BuildingProject, bool.FalseString },
46
{
PropertyNames
.ProvideCommandLineArgs, bool.TrueString },
49
{
PropertyNames
.SkipCompilerExecution, bool.TrueString },
51
{
PropertyNames
.ContinueOnError, PropertyValues.ErrorAndContinue },
57
{
PropertyNames
.ShouldUnsetParentConfigurationAndPlatform, bool.FalseString }
215
return project?.GetPropertyValue(
PropertyNames
.TargetPath);
280
var targetFrameworkValue = project.GetPropertyValue(
PropertyNames
.TargetFramework);
281
var targetFrameworksValue = project.GetPropertyValue(
PropertyNames
.TargetFrameworks);
294
if (!project.GlobalProperties.TryGetValue(
PropertyNames
.TargetFramework, out var initialGlobalTargetFrameworkValue))
300
project.SetGlobalProperty(
PropertyNames
.TargetFramework, targetFramework);
309
project.RemoveGlobalProperty(
PropertyNames
.TargetFramework);
313
project.SetGlobalProperty(
PropertyNames
.TargetFramework, initialGlobalTargetFrameworkValue);
MSBuild\CSharp\CSharpCommandLineArgumentReader.cs (23)
36
AddIfNotNullOrWhiteSpace("appconfig", Project.ReadPropertyString(
PropertyNames
.AppConfigForCompiler));
37
AddIfNotNullOrWhiteSpace("baseaddress", Project.ReadPropertyString(
PropertyNames
.BaseAddress));
38
AddIfTrue("checked", Project.ReadPropertyBool(
PropertyNames
.CheckForOverflowUnderflow));
39
AddIfNotNullOrWhiteSpace("define", Project.ReadPropertyString(
PropertyNames
.DefineConstants));
40
AddIfNotNullOrWhiteSpace("filealign", Project.ReadPropertyString(
PropertyNames
.FileAlignment));
42
AddIfTrue("fullpaths", Project.ReadPropertyBool(
PropertyNames
.GenerateFullPaths));
43
AddIfTrue("highentropyva", Project.ReadPropertyBool(
PropertyNames
.HighEntropyVA));
44
AddIfNotNullOrWhiteSpace("langversion", Project.ReadPropertyString(
PropertyNames
.LangVersion));
45
AddIfNotNullOrWhiteSpace("main", Project.ReadPropertyString(
PropertyNames
.StartupObject));
46
AddIfNotNullOrWhiteSpace("moduleassemblyname", Project.ReadPropertyString(
PropertyNames
.ModuleAssemblyName));
47
AddIfTrue("nostdlib", Project.ReadPropertyBool(
PropertyNames
.NoCompilerStandardLib));
48
AddIfNotNullOrWhiteSpace("nowarn", Project.ReadPropertyString(
PropertyNames
.NoWarn));
49
AddIfTrue("optimize", Project.ReadPropertyBool(
PropertyNames
.Optimize));
50
AddIfNotNullOrWhiteSpace("out", Project.ReadItemsAsString(
PropertyNames
.IntermediateAssembly));
51
AddIfNotNullOrWhiteSpace("pdb", Project.ReadPropertyString(
PropertyNames
.PdbFile));
52
AddIfNotNullOrWhiteSpace("ruleset", Project.ReadPropertyString(
PropertyNames
.ResolvedCodeAnalysisRuleSet));
53
AddIfNotNullOrWhiteSpace("subsystemversion", Project.ReadPropertyString(
PropertyNames
.SubsystemVersion));
54
AddIfNotNullOrWhiteSpace("target", Project.ReadPropertyString(
PropertyNames
.OutputType));
55
AddIfTrue("unsafe", Project.ReadPropertyBool(
PropertyNames
.AllowUnsafeBlocks));
56
Add("warn", Project.ReadPropertyInt(
PropertyNames
.WarningLevel));
57
AddIfTrue("warnaserror", Project.ReadPropertyBool(
PropertyNames
.TreatWarningsAsErrors));
58
AddIfNotNullOrWhiteSpace("warnaserror+", Project.ReadPropertyString(
PropertyNames
.WarningsAsErrors));
59
AddIfNotNullOrWhiteSpace("warnaserror-", Project.ReadPropertyString(
PropertyNames
.WarningsNotAsErrors));
MSBuild\ProjectFile\CommandLineArgumentReader.cs (10)
156
var emitDebugInfo = Project.ReadPropertyBool(
PropertyNames
.DebugSymbols);
159
var debugType = Project.ReadPropertyString(
PropertyNames
.DebugType);
169
var delaySign = Project.ReadPropertyString(
PropertyNames
.DelaySign);
178
var errorReport = Project.ReadPropertyString(
PropertyNames
.ErrorReport);
187
var features = Project.ReadPropertyString(
PropertyNames
.Features);
216
var platform = Project.ReadPropertyString(
PropertyNames
.PlatformTarget);
217
var prefer32bit = Project.ReadPropertyBool(
PropertyNames
.Prefer32Bit);
254
var signAssembly = Project.ReadPropertyBool(
PropertyNames
.SignAssembly);
257
var keyFile = Project.ReadPropertyString(
PropertyNames
.KeyOriginatorFile);
263
var keyContainer = Project.ReadPropertyString(
PropertyNames
.KeyContainerName);
MSBuild\ProjectFile\Extensions.cs (1)
101
=> executedProject.ReadPropertyInt(
PropertyNames
.CodePage) is >= 0 and var codePage ? codePage : 0;
MSBuild\ProjectFile\ProjectInstanceReader.cs (10)
45
var outputFilePath = _projectInstance.ReadPropertyString(
PropertyNames
.TargetPath);
51
var outputRefFilePath = _projectInstance.ReadPropertyString(
PropertyNames
.TargetRefPath);
57
var generatedFilesOutputDirectory = _projectInstance.ReadPropertyString(
PropertyNames
.CompilerGeneratedFilesOutputPath);
68
var projectAssetsFilePath = _projectInstance.ReadPropertyString(
PropertyNames
.ProjectAssetsFile);
75
var defaultNamespace = _projectInstance.ReadPropertyString(
PropertyNames
.RootNamespace) ?? string.Empty;
77
var targetFramework = _projectInstance.ReadPropertyString(
PropertyNames
.TargetFramework);
83
var targetFrameworkIdentifier = _projectInstance.ReadPropertyString(
PropertyNames
.TargetFrameworkIdentifier);
85
var targetFrameworkVersion = _projectInstance.ReadPropertyString(
PropertyNames
.TargetFrameworkVersion);
106
var checksumAlgorithm = _projectInstance.ReadPropertyString(
PropertyNames
.ChecksumAlgorithm);
110
checksumAlgorithm = _projectInstance.ReadPropertyString(
PropertyNames
.PdbChecksumAlgorithm);
MSBuild\VisualBasic\VisualBasicCommandLineArgumentReader.cs (30)
41
AddIfNotNullOrWhiteSpace("baseaddress", Project.ReadPropertyString(
PropertyNames
.BaseAddress));
42
AddIfNotNullOrWhiteSpace("define", Project.ReadPropertyString(
PropertyNames
.FinalDefineConstants));
43
AddIfNotNullOrWhiteSpace("filealign", Project.ReadPropertyString(
PropertyNames
.FileAlignment));
44
AddIfTrue("highentropyva", Project.ReadPropertyBool(
PropertyNames
.HighEntropyVA));
45
AddIfNotNullOrWhiteSpace("langversion", Project.ReadPropertyString(
PropertyNames
.LangVersion));
46
AddIfNotNullOrWhiteSpace("main", Project.ReadPropertyString(
PropertyNames
.StartupObject));
47
AddIfNotNullOrWhiteSpace("moduleassemblyname", Project.ReadPropertyString(
PropertyNames
.ModuleAssemblyName));
48
AddIfTrue("netcf", Project.ReadPropertyBool(
PropertyNames
.TargetCompactFramework));
49
AddIfTrue("nostdlib", Project.ReadPropertyBool(
PropertyNames
.NoCompilerStandardLib));
50
AddIfNotNullOrWhiteSpace("nowarn", Project.ReadPropertyString(
PropertyNames
.NoWarn));
51
AddIfTrue("nowarn", Project.ReadPropertyBool(
PropertyNames
._NoWarnings));
52
AddIfTrue("optimize", Project.ReadPropertyBool(
PropertyNames
.Optimize));
53
AddIfNotNullOrWhiteSpace("out", Project.ReadItemsAsString(
PropertyNames
.IntermediateAssembly));
54
AddIfTrue("removeintchecks", Project.ReadPropertyBool(
PropertyNames
.RemoveIntegerChecks));
55
AddIfNotNullOrWhiteSpace("rootnamespace", Project.ReadPropertyString(
PropertyNames
.RootNamespace));
56
AddIfNotNullOrWhiteSpace("ruleset", Project.ReadPropertyString(
PropertyNames
.ResolvedCodeAnalysisRuleSet));
57
AddIfNotNullOrWhiteSpace("sdkpath", Project.ReadPropertyString(
PropertyNames
.FrameworkPathOverride));
58
AddIfNotNullOrWhiteSpace("subsystemversion", Project.ReadPropertyString(
PropertyNames
.SubsystemVersion));
59
AddIfNotNullOrWhiteSpace("target", Project.ReadPropertyString(
PropertyNames
.OutputType));
60
AddIfTrue("warnaserror", Project.ReadPropertyBool(
PropertyNames
.TreatWarningsAsErrors));
61
AddIfNotNullOrWhiteSpace("warnaserror+", Project.ReadPropertyString(
PropertyNames
.WarningsAsErrors));
62
AddIfNotNullOrWhiteSpace("warnaserror-", Project.ReadPropertyString(
PropertyNames
.WarningsNotAsErrors));
67
var documentationFile = Project.ReadPropertyString(
PropertyNames
.DocFileItem);
68
var generateDocumentation = Project.ReadPropertyBool(
PropertyNames
.GenerateDocumentation);
87
var optionCompare = Project.ReadPropertyString(
PropertyNames
.OptionCompare);
98
AddIfFalse("optionexplicit-", Project.ReadPropertyBool(
PropertyNames
.OptionExplicit));
100
AddIfTrue("optioninfer", Project.ReadPropertyBool(
PropertyNames
.OptionInfer));
101
AddWithPlusOrMinus("optionstrict", Project.ReadPropertyBool(
PropertyNames
.OptionStrict));
102
AddIfNotNullOrWhiteSpace("optionstrict", Project.ReadPropertyString(
PropertyNames
.OptionStrictType));
107
var vbRuntime = Project.ReadPropertyString(
PropertyNames
.VbRuntime);