21 references to ReadPropertyBool
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (21)
MSBuild\CSharp\CSharpCommandLineArgumentReader.cs (7)
37AddIfTrue("checked", Project.ReadPropertyBool(PropertyNames.CheckForOverflowUnderflow)); 41AddIfTrue("fullpaths", Project.ReadPropertyBool(PropertyNames.GenerateFullPaths)); 42AddIfTrue("highentropyva", Project.ReadPropertyBool(PropertyNames.HighEntropyVA)); 46AddIfTrue("nostdlib", Project.ReadPropertyBool(PropertyNames.NoCompilerStandardLib)); 48AddIfTrue("optimize", Project.ReadPropertyBool(PropertyNames.Optimize)); 54AddIfTrue("unsafe", Project.ReadPropertyBool(PropertyNames.AllowUnsafeBlocks)); 56AddIfTrue("warnaserror", Project.ReadPropertyBool(PropertyNames.TreatWarningsAsErrors));
MSBuild\ProjectFile\CommandLineArgumentReader.cs (3)
155var emitDebugInfo = Project.ReadPropertyBool(PropertyNames.DebugSymbols); 216var prefer32bit = Project.ReadPropertyBool(PropertyNames.Prefer32Bit); 253var signAssembly = Project.ReadPropertyBool(PropertyNames.SignAssembly);
MSBuild\VisualBasic\VisualBasicCommandLineArgumentReader.cs (11)
43AddIfTrue("highentropyva", Project.ReadPropertyBool(PropertyNames.HighEntropyVA)); 47AddIfTrue("netcf", Project.ReadPropertyBool(PropertyNames.TargetCompactFramework)); 48AddIfTrue("nostdlib", Project.ReadPropertyBool(PropertyNames.NoCompilerStandardLib)); 50AddIfTrue("nowarn", Project.ReadPropertyBool(PropertyNames._NoWarnings)); 51AddIfTrue("optimize", Project.ReadPropertyBool(PropertyNames.Optimize)); 53AddIfTrue("removeintchecks", Project.ReadPropertyBool(PropertyNames.RemoveIntegerChecks)); 59AddIfTrue("warnaserror", Project.ReadPropertyBool(PropertyNames.TreatWarningsAsErrors)); 67var generateDocumentation = Project.ReadPropertyBool(PropertyNames.GenerateDocumentation); 97AddIfFalse("optionexplicit-", Project.ReadPropertyBool(PropertyNames.OptionExplicit)); 99AddIfTrue("optioninfer", Project.ReadPropertyBool(PropertyNames.OptionInfer)); 100AddWithPlusOrMinus("optionstrict", Project.ReadPropertyBool(PropertyNames.OptionStrict));