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));
932commandLine.AppendPlusOrMinusSwitch("/deterministic", _store, nameof(Deterministic));
933commandLine.AppendPlusOrMinusSwitch("/publicsign", _store, nameof(PublicSign));
939commandLine.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");