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