Make Portable PDB the default on Windows
VS 2015 Update 2 CTP has been released which has support for debugging portable PDBs. Now is a good time to make the transition so a) we can root out any remaining issues with portable PDBs and b) have larger dogfooding of the VS debugging experience here. closes #704
This commit is contained in:
parent
b63705198c
commit
e56858b4b3
1 changed files with 2 additions and 5 deletions
|
@ -128,13 +128,10 @@ namespace Microsoft.DotNet.Tools.Compiler.Csc
|
|||
var args = new List<string>()
|
||||
{
|
||||
"-nostdlib",
|
||||
"-nologo"
|
||||
"-nologo",
|
||||
"-debug:portable"
|
||||
};
|
||||
|
||||
args.Add(RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
|
||||
? "-debug:full"
|
||||
: "-debug:portable");
|
||||
|
||||
return args;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue