8 writes to Instrument
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (8)
CscTests.cs (4)
138
csc.
Instrument
= null;
142
csc.
Instrument
= "TestCoverage";
146
csc.
Instrument
= "TestCoverage,Mumble";
150
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)
ManagedCompiler.cs (3)
216
set { _store[nameof(
Instrument
)] = value; }
217
get { return (string?)_store[nameof(
Instrument
)]; }
919
commandLine.AppendSwitchWithSplitting("/instrument:",
Instrument
, ",", ';', ',');