Unable to debug VSIX project

前端 未结 6 965
隐瞒了意图╮
隐瞒了意图╮ 2020-12-10 14:20

I\'m trying to develop my first visual studio extensions project, I have VS10 SDK installed and was able to create a new project and can build it fine, however when I attemp

6条回答
  •  长情又很酷
    2020-12-10 14:45

    OK I managed to get it working. In order to do so, I had to unload the vsix project and edit the file as an XML document.

    Either remove the following lines from the project file:

    
        false
    
    
        false
    
    
        false
    
    
        false
    
    
        false
    
    

    or set them to true:

    
        true
    
    
        true
    
    
        true
    
    
        true
    
    
        true
    
    

    or add them under the ... node if they don't exist.

    Once I removed these lines and rebuilt the solution, the dll and pdb were copied now as expected to the bin\debug folder as well as to the "AppData\Local\Microsoft\VisualStudio\10.0Exp\Extensions\" folder.

提交回复
热议问题