16 references to AppendPlusOrMinusSwitch
Microsoft.Build.Tasks.CodeAnalysis.Sdk (16)
src\Compilers\Core\MSBuildTask\Csc.cs (4)
203commandLine.AppendPlusOrMinusSwitch("/unsafe", _store, nameof(AllowUnsafeBlocks)); 204commandLine.AppendPlusOrMinusSwitch("/checked", _store, nameof(CheckForOverflowUnderflow)); 209commandLine.AppendPlusOrMinusSwitch("/nostdlib", _store, nameof(NoStandardLib)); 221commandLine.AppendPlusOrMinusSwitch("/highentropyva", _store, nameof(HighEntropyVA));
src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (7)
880commandLine.AppendPlusOrMinusSwitch("/debug", _store, nameof(EmitDebugInformation)); 883commandLine.AppendPlusOrMinusSwitch("/delaysign", _store, nameof(DelaySign)); 895commandLine.AppendPlusOrMinusSwitch("/optimize", _store, nameof(Optimize)); 907commandLine.AppendPlusOrMinusSwitch("/warnaserror", _store, nameof(TreatWarningsAsErrors)); 922commandLine.AppendPlusOrMinusSwitch("/deterministic", _store, nameof(Deterministic)); 923commandLine.AppendPlusOrMinusSwitch("/publicsign", _store, nameof(PublicSign)); 929commandLine.AppendPlusOrMinusSwitch("/skipanalyzers", _store, nameof(SkipAnalyzers));
src\Compilers\Core\MSBuildTask\Vbc.cs (5)
394commandLine.AppendPlusOrMinusSwitch("/doc", this._store, "GenerateDocumentation"); 396commandLine.AppendPlusOrMinusSwitch("/optionexplicit", this._store, "OptionExplicit"); 433commandLine.AppendPlusOrMinusSwitch("/optioninfer", this._store, "OptionInfer"); 438commandLine.AppendPlusOrMinusSwitch("/removeintchecks", this._store, "RemoveIntegerChecks"); 444commandLine.AppendPlusOrMinusSwitch("/highentropyva", this._store, "HighEntropyVA");