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