28 writes to DebugType
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (28)
CscTests.cs (13)
225
csc.
DebugType
= "full";
230
csc.
DebugType
= "pdbonly";
235
csc.
DebugType
= "portable";
240
csc.
DebugType
= "embedded";
245
csc.
DebugType
= null;
250
csc.
DebugType
= "";
259
csc.
DebugType
= "portable";
265
csc.
DebugType
= "portable";
271
csc.
DebugType
= "portable";
281
csc.
DebugType
= "portable";
287
csc.
DebugType
= "portable";
293
csc.
DebugType
= "portable";
299
csc.
DebugType
= "full";
VbcTests.cs (15)
222
vbc.
DebugType
= "full";
227
vbc.
DebugType
= "pdbonly";
232
vbc.
DebugType
= "portable";
237
vbc.
DebugType
= "embedded";
242
vbc.
DebugType
= null;
247
vbc.
DebugType
= "";
256
vbc.
DebugType
= "portable";
262
vbc.
DebugType
= "portable";
268
vbc.
DebugType
= "portable";
278
vbc.
DebugType
= "portable";
284
vbc.
DebugType
= "portable";
290
vbc.
DebugType
= "portable";
296
vbc.
DebugType
= "full";
302
vbc.
DebugType
= "full";
308
vbc.
DebugType
= "full";
10 references to DebugType
Microsoft.Build.Tasks.CodeAnalysis (10)
Csc.cs (2)
505
CheckHostObjectSupport(param = nameof(
DebugType
), cscHostObject.SetDebugType(
DebugType
));
ManagedCompiler.cs (6)
135
set { _store[nameof(
DebugType
)] = value; }
136
get { return (string?)_store[nameof(
DebugType
)]; }
904
commandLine.AppendSwitchIfNotNull("/debug:",
DebugType
);
1066
if (_store[nameof(
DebugType
)] != null)
1069
if (string.Compare((string?)_store[nameof(
DebugType
)], "none", StringComparison.OrdinalIgnoreCase) == 0)
1071
_store[nameof(
DebugType
)] = null;
Vbc.cs (2)
836
CheckHostObjectSupport(param = nameof(
DebugType
), vbcHostObject.SetDebugType(EmitDebugInformation,
DebugType
));