10 references to DebugType
Microsoft.Build.Tasks.CodeAnalysis (10)
src\roslyn\src\Compilers\Core\MSBuildTask\Csc.cs (2)
582CheckHostObjectSupport(param = nameof(DebugType), cscHostObject.SetDebugType(DebugType));
src\roslyn\src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (6)
135set { _store[nameof(DebugType)] = value; } 136get { return (string?)_store[nameof(DebugType)]; } 899commandLine.AppendSwitchIfNotNull("/debug:", DebugType); 1073if (_store[nameof(DebugType)] != null) 1076if (string.Equals((string?)_store[nameof(DebugType)], "none", StringComparison.OrdinalIgnoreCase)) 1078_store[nameof(DebugType)] = null;
src\roslyn\src\Compilers\Core\MSBuildTask\Vbc.cs (2)
864CheckHostObjectSupport(param = nameof(DebugType), vbcHostObject.SetDebugType(EmitDebugInformation, DebugType));