Packages not loading after installing Visual Studio 2015 RTM

后端 未结 11 1516
滥情空心
滥情空心 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 01:59

    Similar to @Tom Clelford's solution, but in addition to deleting everything in:

    C:\Users{username}\AppData\Local\Microsoft\VisualStudio\14.0

    I had to also delete everything in

    C:\Users{username}\AppData\Local\Microsoft\VisualStudio\vshub

    I didn't have to touch anything in the Roaming folder, but that might vary from user to user.

    0 讨论(0)
  • 2020-11-28 02:00

    Due to extensions in Visual Studio 2015, I had to rename: C:\Users\\AppData\Local\Microsoft\VisualStudio\14.0

    Once renamed, I opened Visual Studio 2015 and received more of these errors but the 14.0 folder was recreated.

    I closed Visual Studio 2015 and copied the folders Extensions and STemplate from the original/renamed folder to the new one.

    I reopened Visual Studio 2015 and all is working again.

    Update 2015-09-24T0017:

    It stopped working again. I tried all options in this post. I found another post and this seems to have worked:

    Run:

    devenv /clearcache
    devenv /updateconfiguration
    
    0 讨论(0)
  • 2020-11-28 02:00

    I had the same problem after upgrading to new ReSharper 2016.2. I fixed the problem by suspending the ReSharper in visual studio (menu ToolsOptionsReSharperSuspend).

    0 讨论(0)
  • 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 <local path to file downloaded in step #1> .\devenv.exe.config
      devenv /UpdateConfiguration
      

    You can check his full article here

    0 讨论(0)
  • 2020-11-28 02:05

    The only thing that worked for me was repairing SQL Server Data Tools (go to Uninstall Programs and select Change/Repair):

    0 讨论(0)
  • 2020-11-28 02:06

    In my case for NugetPackage, the problem was possibly due to installing Visual Studio 2013 after installing Visual Studio 2015 (co-existing).

    The way I resolved it was to re-install NuGet Package Manager for Visual Studio 2015 (in Tools > Extensions and Updates...)

    0 讨论(0)
提交回复
热议问题