16 references to AppendPlusOrMinusSwitch
Microsoft.Build.Tasks.CodeAnalysis (16)
src\Compilers\Core\MSBuildTask\Csc.cs (4)
220commandLine.AppendPlusOrMinusSwitch("/unsafe", _store, nameof(AllowUnsafeBlocks)); 221commandLine.AppendPlusOrMinusSwitch("/checked", _store, nameof(CheckForOverflowUnderflow)); 226commandLine.AppendPlusOrMinusSwitch("/nostdlib", _store, nameof(NoStandardLib)); 238commandLine.AppendPlusOrMinusSwitch("/highentropyva", _store, nameof(HighEntropyVA));
src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (7)
882commandLine.AppendPlusOrMinusSwitch("/debug", _store, nameof(EmitDebugInformation)); 885commandLine.AppendPlusOrMinusSwitch("/delaysign", _store, nameof(DelaySign)); 897commandLine.AppendPlusOrMinusSwitch("/optimize", _store, nameof(Optimize)); 909commandLine.AppendPlusOrMinusSwitch("/warnaserror", _store, nameof(TreatWarningsAsErrors)); 934commandLine.AppendPlusOrMinusSwitch("/deterministic", _store, nameof(Deterministic)); 935commandLine.AppendPlusOrMinusSwitch("/publicsign", _store, nameof(PublicSign)); 941commandLine.AppendPlusOrMinusSwitch("/skipanalyzers", _store, nameof(SkipAnalyzers));
src\Compilers\Core\MSBuildTask\Vbc.cs (5)
410commandLine.AppendPlusOrMinusSwitch("/doc", this._store, "GenerateDocumentation"); 412commandLine.AppendPlusOrMinusSwitch("/optionexplicit", this._store, "OptionExplicit"); 449commandLine.AppendPlusOrMinusSwitch("/optioninfer", this._store, "OptionInfer"); 454commandLine.AppendPlusOrMinusSwitch("/removeintchecks", this._store, "RemoveIntegerChecks"); 460commandLine.AppendPlusOrMinusSwitch("/highentropyva", this._store, "HighEntropyVA");