Packages not loading after installing Visual Studio 2015 RTM

后端 未结 11 1626
滥情空心
滥情空心 2020-11-28 01:28

The problem

I had Visual Studio 2015 RC installed and installed Visual Studio 2015 RTM over it. I couldn\'t find anything on the Internet that said you couldn\'t d

11条回答
  •  野性不改
    2020-11-28 02:03

    My problem happened after installing Visual Studio 2015 Update 1.

    I tried all suggested solutions without luck. The solution which worked for me was a one from Eric Knox (Microsoft team).

    This is it:

    1. Download the correct VSUpdate 1 configuration to a folder on your machine from this link: https://download.microsoft.com/download/2/7/6/276D15B2-6851-42AA-8D1F-639CD3FC84BE/devenv-exe-config-update1.xml
    2. Open an administrator command prompt and run these steps (assuming you installed to the default location):

      cd "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\Common7\IDE"
      ren devenv.exe.config devenv.exe.config.backup
      copy  .\devenv.exe.config
      devenv /UpdateConfiguration
      

    You can check his full article here

提交回复
热议问题