The “GetDeploymentPathFromVsixManifest” task failed unexpectedly

前端 未结 5 684
广开言路
广开言路 2021-02-18 22:44

After installation of visual studio 2017 getting his error for VSIX projects ... any suggestion to resolve the issue?

Severity    Code          


        
5条回答
  •  抹茶落季
    2021-02-18 23:39

    Hopefully someone else can get a better workaround. but for now this is what I got working:

    1. Uncheck the "Deploy VSIX content to experimental" in the VSIX tab of your project properties. (this will allow you to build the project)
    2. Follow this migration guide. in my case, all I had to do was adding my environment to the supported list. the rest seems more relevant if you are ready to publish.
    3. Install the generated extension manually from the target output directory. if it doesn't work, delete the content of the output directory and rebuild.

    This will let you resume working on the extension, but unfortunately you won't have any debugging support. and you will have to uninstall/install every time you want to test something.

提交回复
热议问题