28 writes to DebugType
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (28)
CscTests.cs (13)
257
csc.
DebugType
= "full";
262
csc.
DebugType
= "pdbonly";
267
csc.
DebugType
= "portable";
272
csc.
DebugType
= "embedded";
277
csc.
DebugType
= null;
282
csc.
DebugType
= "";
291
csc.
DebugType
= "portable";
297
csc.
DebugType
= "portable";
303
csc.
DebugType
= "portable";
313
csc.
DebugType
= "portable";
319
csc.
DebugType
= "portable";
325
csc.
DebugType
= "portable";
331
csc.
DebugType
= "full";
VbcTests.cs (15)
230
vbc.
DebugType
= "full";
235
vbc.
DebugType
= "pdbonly";
240
vbc.
DebugType
= "portable";
245
vbc.
DebugType
= "embedded";
250
vbc.
DebugType
= null;
255
vbc.
DebugType
= "";
264
vbc.
DebugType
= "portable";
270
vbc.
DebugType
= "portable";
276
vbc.
DebugType
= "portable";
286
vbc.
DebugType
= "portable";
292
vbc.
DebugType
= "portable";
298
vbc.
DebugType
= "portable";
304
vbc.
DebugType
= "full";
310
vbc.
DebugType
= "full";
316
vbc.
DebugType
= "full";
10 references to DebugType
Microsoft.Build.Tasks.CodeAnalysis (10)
src\Compilers\Core\MSBuildTask\Csc.cs (2)
561
CheckHostObjectSupport(param = nameof(
DebugType
), cscHostObject.SetDebugType(
DebugType
));
src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (6)
135
set { _store[nameof(
DebugType
)] = value; }
136
get { return (string?)_store[nameof(
DebugType
)]; }
881
commandLine.AppendSwitchIfNotNull("/debug:",
DebugType
);
1045
if (_store[nameof(
DebugType
)] != null)
1048
if (string.Compare((string?)_store[nameof(
DebugType
)], "none", StringComparison.OrdinalIgnoreCase) == 0)
1050
_store[nameof(
DebugType
)] = null;
src\Compilers\Core\MSBuildTask\Vbc.cs (2)
842
CheckHostObjectSupport(param = nameof(
DebugType
), vbcHostObject.SetDebugType(EmitDebugInformation,
DebugType
));