28 writes to DebugType
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (28)
CscTests.cs (13)
258csc.DebugType = "full"; 263csc.DebugType = "pdbonly"; 268csc.DebugType = "portable"; 273csc.DebugType = "embedded"; 278csc.DebugType = null; 283csc.DebugType = ""; 292csc.DebugType = "portable"; 298csc.DebugType = "portable"; 304csc.DebugType = "portable"; 314csc.DebugType = "portable"; 320csc.DebugType = "portable"; 326csc.DebugType = "portable"; 332csc.DebugType = "full";
VbcTests.cs (15)
231vbc.DebugType = "full"; 236vbc.DebugType = "pdbonly"; 241vbc.DebugType = "portable"; 246vbc.DebugType = "embedded"; 251vbc.DebugType = null; 256vbc.DebugType = ""; 265vbc.DebugType = "portable"; 271vbc.DebugType = "portable"; 277vbc.DebugType = "portable"; 287vbc.DebugType = "portable"; 293vbc.DebugType = "portable"; 299vbc.DebugType = "portable"; 305vbc.DebugType = "full"; 311vbc.DebugType = "full"; 317vbc.DebugType = "full";
10 references to DebugType
Microsoft.Build.Tasks.CodeAnalysis (10)
src\Compilers\Core\MSBuildTask\Csc.cs (2)
571CheckHostObjectSupport(param = nameof(DebugType), cscHostObject.SetDebugType(DebugType));
src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (6)
135set { _store[nameof(DebugType)] = value; } 136get { return (string?)_store[nameof(DebugType)]; } 881commandLine.AppendSwitchIfNotNull("/debug:", DebugType); 1055if (_store[nameof(DebugType)] != null) 1058if (string.Compare((string?)_store[nameof(DebugType)], "none", StringComparison.OrdinalIgnoreCase) == 0) 1060_store[nameof(DebugType)] = null;
src\Compilers\Core\MSBuildTask\Vbc.cs (2)
851CheckHostObjectSupport(param = nameof(DebugType), vbcHostObject.SetDebugType(EmitDebugInformation, DebugType));