You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-dev@incubator.apache.org by "Greg Domjan (JIRA)" <ji...@apache.org> on 2014/06/10 14:14:01 UTC

[jira] [Created] (NPANDAY-625) Support /debug:pdbonly compile option

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)