21 references to ReadPropertyBool
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (21)
MSBuild\CSharp\CSharpCommandLineArgumentReader.cs (7)
38AddIfTrue("checked", Project.ReadPropertyBool(PropertyNames.CheckForOverflowUnderflow)); 42AddIfTrue("fullpaths", Project.ReadPropertyBool(PropertyNames.GenerateFullPaths)); 43AddIfTrue("highentropyva", Project.ReadPropertyBool(PropertyNames.HighEntropyVA)); 47AddIfTrue("nostdlib", Project.ReadPropertyBool(PropertyNames.NoCompilerStandardLib)); 49AddIfTrue("optimize", Project.ReadPropertyBool(PropertyNames.Optimize)); 55AddIfTrue("unsafe", Project.ReadPropertyBool(PropertyNames.AllowUnsafeBlocks)); 57AddIfTrue("warnaserror", Project.ReadPropertyBool(PropertyNames.TreatWarningsAsErrors));
MSBuild\ProjectFile\CommandLineArgumentReader.cs (3)
168var emitDebugInfo = Project.ReadPropertyBool(PropertyNames.DebugSymbols); 229var prefer32bit = Project.ReadPropertyBool(PropertyNames.Prefer32Bit); 276var signAssembly = Project.ReadPropertyBool(PropertyNames.SignAssembly);
MSBuild\VisualBasic\VisualBasicCommandLineArgumentReader.cs (11)
44AddIfTrue("highentropyva", Project.ReadPropertyBool(PropertyNames.HighEntropyVA)); 48AddIfTrue("netcf", Project.ReadPropertyBool(PropertyNames.TargetCompactFramework)); 49AddIfTrue("nostdlib", Project.ReadPropertyBool(PropertyNames.NoCompilerStandardLib)); 51AddIfTrue("nowarn", Project.ReadPropertyBool(PropertyNames._NoWarnings)); 52AddIfTrue("optimize", Project.ReadPropertyBool(PropertyNames.Optimize)); 54AddIfTrue("removeintchecks", Project.ReadPropertyBool(PropertyNames.RemoveIntegerChecks)); 60AddIfTrue("warnaserror", Project.ReadPropertyBool(PropertyNames.TreatWarningsAsErrors)); 68var generateDocumentation = Project.ReadPropertyBool(PropertyNames.GenerateDocumentation); 98AddIfFalse("optionexplicit-", Project.ReadPropertyBool(PropertyNames.OptionExplicit)); 100AddIfTrue("optioninfer", Project.ReadPropertyBool(PropertyNames.OptionInfer)); 101AddWithPlusOrMinus("optionstrict", Project.ReadPropertyBool(PropertyNames.OptionStrict));