How to remove a pop-up window saying that the package "VSTS for Database Professionals" is loaded incorrectly? "?

I'm not sure exactly when, my VS2010 started showing me the same error every time it was downloaded. Clicking “No” has no effect, as the message will be displayed again and again when I open VS.

I really don’t see any adverse effect without this “VSTS for Database Professionals”, but the error popup becomes annoying. Can someone tell me how to disable it without deleting anything?

  ---------------------------
 Microsoft Visual Studio
 ---------------------------
 The 'VSTS for Database Professionals' package did not load correctly.



 The problem may have been caused by a configuration change or by the installation of another extension.  You can get more information by running the application together with the / log parameter on the command line, and then examining the file 'C: \ Users \ peter.mounce \ AppData \ Roaming \ Microsoft \ VisualStudio \ 10.0 \ ActivityLog.xml'.



 Continue to show this error message?
 ---------------------------
 Yes no   
 ---------------------------

Edited to add: I did a google search to find out if anyone else has such a problem, but the only cases found are not applicable to my situation, since I have neither LightSwitch nor PostSharp. I have ReSharper 6.1 if it helps anyone.

+4
source share
4 answers

Resharper appears to be interfering from your log file. Try to remove / restore and see if it improves.

<entry> <record>288</record> <time>2013/04/11 18:30:06.996</time> <type>Error</type> <source>VisualStudio</source> <description>SetSite failed for package [VSTS for Database Professionals]</description> <guid>{068E2583-0872-403B-AF4C-6C2A8F2D8C3E}</guid> <hr>80131522</hr> <errorinfo>Could not load type 'System.Runtime.CompilerServices.ExtensionAttribute' from assembly 'JetBrains.Platform.ReSharper.Util, Version=6.1.1000.82, Culture=neutral, PublicKeyToken=1010a0d8d6380325'.</errorinfo> </entry> 
+2
source

Do you have .NET Framework 4.5 installed? If not, installation can help with this popup. For some reason, I have not researched, but for some reason this package seems to depend on the .NET Framework 4.5. Even if you are using Visual Studio 2010 (which does not even support 4.5).

+3
source
  • Visual Studio 2010 installation media: \ WCU \ DAC folder, find and run-install:
    • DACFramework_enu.msi
    • DACProjectSystemSetup_enu.msi
    • TSqlLanguageService_enu.msi
  • Reapply Visual Studio 2010 SP1

More details: http://connect.microsoft.com/VisualStudio/feedback/details/532121/tons-of-package-did-not-load-correctly-errors

+2
source

The solution consists of resetting the settings (in case something went wrong with the SQL side of the installation):

1) Run DOS in ADMIN mode (hold WindowsKey + X), select "Command Prompt (Admin)" 2) Go to the developer studio folder, usually under "C: \ Program Files (x86) \ Microsoft Visual Studio 10.0 \ Common7 \ IDE "3) reset the settings by entering:

devenv.exe / ResetSettings

4) Upon completion, close DOS and then run Visual Studio, the error should disappear.

+2
source

Source: https://habr.com/ru/post/1439209/


All Articles