7 references to AppendSwitchWithSplitting
Microsoft.Build.Tasks.CodeAnalysis (7)
src\Compilers\Core\MSBuildTask\Csc.cs (3)
205commandLine.AppendSwitchWithSplitting("/nowarn:", DisabledWarnings, ",", ';', ','); 263commandLine.AppendSwitchWithSplitting("/warnaserror+:", WarningsAsErrors, ",", ';', ','); 264commandLine.AppendSwitchWithSplitting("/warnaserror-:", WarningsNotAsErrors, ",", ';', ',');
src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (1)
926commandLine.AppendSwitchWithSplitting("/instrument:", Instrument, ",", ';', ',');
src\Compilers\Core\MSBuildTask\Vbc.cs (3)
431commandLine.AppendSwitchWithSplitting("/nowarn:", this.DisabledWarnings, ",", ';', ','); 520commandLine.AppendSwitchWithSplitting("/warnaserror+:", this.WarningsAsErrors, ",", ';', ','); 521commandLine.AppendSwitchWithSplitting("/warnaserror-:", this.WarningsNotAsErrors, ",", ';', ',');