src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (7)
879commandLine.AppendPlusOrMinusSwitch("/debug", _store, nameof(EmitDebugInformation));
882commandLine.AppendPlusOrMinusSwitch("/delaysign", _store, nameof(DelaySign));
894commandLine.AppendPlusOrMinusSwitch("/optimize", _store, nameof(Optimize));
906commandLine.AppendPlusOrMinusSwitch("/warnaserror", _store, nameof(TreatWarningsAsErrors));
921commandLine.AppendPlusOrMinusSwitch("/deterministic", _store, nameof(Deterministic));
922commandLine.AppendPlusOrMinusSwitch("/publicsign", _store, nameof(PublicSign));
928commandLine.AppendPlusOrMinusSwitch("/skipanalyzers", _store, nameof(SkipAnalyzers));
src\Compilers\Core\MSBuildTask\Vbc.cs (5)
401commandLine.AppendPlusOrMinusSwitch("/doc", this._store, "GenerateDocumentation");
403commandLine.AppendPlusOrMinusSwitch("/optionexplicit", this._store, "OptionExplicit");
440commandLine.AppendPlusOrMinusSwitch("/optioninfer", this._store, "OptionInfer");
445commandLine.AppendPlusOrMinusSwitch("/removeintchecks", this._store, "RemoveIntegerChecks");
451commandLine.AppendPlusOrMinusSwitch("/highentropyva", this._store, "HighEntropyVA");