Wednesday 2 November 2016

ide - ReSharper 5 installer not recognizing Visual Studio 2010 Express




I'm trying to install ReSharper 5. But the installer does not recognize that I've got Visual Studio 2010 Express installed. The installer does find my Visual Studio 2008 Team System installation.



I've got a valid ReSharper 5 license.


Answer



The Express versions of Visual Studio do not support add-ins.



See also What is “missing” in the Visual Studio Express Editions?


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...