Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 1.66 KB

Troubleshooting.md

File metadata and controls

18 lines (14 loc) · 1.66 KB

The extension is always disabled after restarting VS

The VSIX installer sometimes fails to remove the old version of an extension during update; if the same extension is installed twice, VS disables it.

Solutions
  • Close VS and use DuplicateExtensionFinder to remove duplicates.
  • Uninstall the extension and restart VS. Repeat until VS does not list the extension any longer. Now install the latest version.

The content of the ResxManager window is empty.

This may have several root causes

  1. When you see the message Error: 'Provide value on 'System.Windows.StaticResourceExtension' threw an exception.'
  1. Some assemblies (usually System.Windows.Interactivity) are loaded twice from different locations. Check the output window to see what locations the assembly is loaded from.
  • If it is loaded from the folder of another extension, disable that extension.
  • If it is loaded from C:/Program Files (x86)/Microsoft Visual Studio/2017/<edition>/Common7/IDE/PrivateAssemblies, you can delete it from there.
  • If it is loaded from the GAC, use gacutil.exe to remove it from there.