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