28 writes to DebugType
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (28)
CscTests.cs (13)
257csc.DebugType = "full"; 262csc.DebugType = "pdbonly"; 267csc.DebugType = "portable"; 272csc.DebugType = "embedded"; 277csc.DebugType = null; 282csc.DebugType = ""; 291csc.DebugType = "portable"; 297csc.DebugType = "portable"; 303csc.DebugType = "portable"; 313csc.DebugType = "portable"; 319csc.DebugType = "portable"; 325csc.DebugType = "portable"; 331csc.DebugType = "full";
VbcTests.cs (15)
230vbc.DebugType = "full"; 235vbc.DebugType = "pdbonly"; 240vbc.DebugType = "portable"; 245vbc.DebugType = "embedded"; 250vbc.DebugType = null; 255vbc.DebugType = ""; 264vbc.DebugType = "portable"; 270vbc.DebugType = "portable"; 276vbc.DebugType = "portable"; 286vbc.DebugType = "portable"; 292vbc.DebugType = "portable"; 298vbc.DebugType = "portable"; 304vbc.DebugType = "full"; 310vbc.DebugType = "full"; 316vbc.DebugType = "full";
10 references to DebugType
Microsoft.Build.Tasks.CodeAnalysis (10)
src\Compilers\Core\MSBuildTask\Csc.cs (2)
561CheckHostObjectSupport(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); 1045if (_store[nameof(DebugType)] != null) 1048if (string.Compare((string?)_store[nameof(DebugType)], "none", StringComparison.OrdinalIgnoreCase) == 0) 1050_store[nameof(DebugType)] = null;
src\Compilers\Core\MSBuildTask\Vbc.cs (2)
842CheckHostObjectSupport(param = nameof(DebugType), vbcHostObject.SetDebugType(EmitDebugInformation, DebugType));