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