10 references to DebugType
Microsoft.Build.Tasks.CodeAnalysis.Sdk (10)
src\Compilers\Core\MSBuildTask\Csc.cs (2)
554CheckHostObjectSupport(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)
835CheckHostObjectSupport(param = nameof(DebugType), vbcHostObject.SetDebugType(EmitDebugInformation, DebugType));