Greg Domjan created NPANDAY-625:
-----------------------------------
Summary: Support /debug:pdbonly compile option
Key: NPANDAY-625
URL: https://issues.apache.org/jira/browse/NPANDAY-625
Project: NPanday
Issue Type: Improvement
Components: Maven Plugins
Affects Versions: 1.5.0-incubating
Reporter: Greg Domjan
Compiler mojo supports creating a pdb, however /debug+ is equivelant to
/debug:full and can tend to cause decreased performance due to setting the
DebuggableAttribute
http://msdn.microsoft.com/en-us/library/8cw0bt21.aspx
http://msdn.microsoft.com/en-us/library/9dd8z24x.aspx
CompilerMojo:138
if (isDebug)
{
params.add("/debug+");
}
Would like some way to choose
params.add("/debug:pdbonly");
--
This message was sent by Atlassian JIRA
(v6.2#6252)