28 writes to DebugType
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (28)
CscTests.cs (13)
258
csc.
DebugType
= "full";
263
csc.
DebugType
= "pdbonly";
268
csc.
DebugType
= "portable";
273
csc.
DebugType
= "embedded";
278
csc.
DebugType
= null;
283
csc.
DebugType
= "";
292
csc.
DebugType
= "portable";
298
csc.
DebugType
= "portable";
304
csc.
DebugType
= "portable";
314
csc.
DebugType
= "portable";
320
csc.
DebugType
= "portable";
326
csc.
DebugType
= "portable";
332
csc.
DebugType
= "full";
VbcTests.cs (15)
231
vbc.
DebugType
= "full";
236
vbc.
DebugType
= "pdbonly";
241
vbc.
DebugType
= "portable";
246
vbc.
DebugType
= "embedded";
251
vbc.
DebugType
= null;
256
vbc.
DebugType
= "";
265
vbc.
DebugType
= "portable";
271
vbc.
DebugType
= "portable";
277
vbc.
DebugType
= "portable";
287
vbc.
DebugType
= "portable";
293
vbc.
DebugType
= "portable";
299
vbc.
DebugType
= "portable";
305
vbc.
DebugType
= "full";
311
vbc.
DebugType
= "full";
317
vbc.
DebugType
= "full";
10 references to DebugType
Microsoft.Build.Tasks.CodeAnalysis (10)
src\Compilers\Core\MSBuildTask\Csc.cs (2)
571
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
);
1055
if (_store[nameof(
DebugType
)] != null)
1058
if (string.Compare((string?)_store[nameof(
DebugType
)], "none", StringComparison.OrdinalIgnoreCase) == 0)
1060
_store[nameof(
DebugType
)] = null;
src\Compilers\Core\MSBuildTask\Vbc.cs (2)
851
CheckHostObjectSupport(param = nameof(
DebugType
), vbcHostObject.SetDebugType(EmitDebugInformation,
DebugType
));