8 writes to Instrument
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (8)
CscTests.cs (4)
135csc.Instrument = null; 139csc.Instrument = "TestCoverage"; 143csc.Instrument = "TestCoverage,Mumble"; 147csc.Instrument = "TestCoverage,Mumble;Stumble";
VbcTests.cs (4)
135vbc.Instrument = null; 139vbc.Instrument = "TestCoverage"; 143vbc.Instrument = "TestCoverage,Mumble"; 147vbc.Instrument = "TestCoverage,Mumble;Stumble";
3 references to Instrument
Microsoft.Build.Tasks.CodeAnalysis (3)
src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (3)
216set { _store[nameof(Instrument)] = value; } 217get { return (string?)_store[nameof(Instrument)]; } 926commandLine.AppendSwitchWithSplitting("/instrument:", Instrument, ",", ';', ',');