Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't open Solution - Because of my Visual Studio version?

I'm working on a project where they asked me to use Visual Studio 2013 so I downloaded but I'm still having problem opening up the solution. This is the error message:

Unsupported
This version of Visual Studio is unable to open the following projects. The project types may not be installed or this version of Visual Studio may not support them. 
For more information on enabling these project types or otherwise migrating your assets, please see the details in the "Migration Report" displayed after clicking OK.
     - {name}.OutlookAddIn, "{path}\{name}.OutlookAddIn.csproj"
     - {name}.Installer, "{path}\{name}.Installer.vdproj"


No changes required
These projects can be opened in Visual Studio 2013, Visual Studio 2012, and Visual Studio 2010 SP1 without changing them.
     - {name}, "{path}\{name}.csproj"
     - {name}, "{path}\{my_solution}.sln"

The error message in the Migration Report:

{name}.Installer\{name}.Installer.vdproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkID=299083&projecttype=54435603-DBB4-11D2-8724-00A0C9A8B90C

{name}.OutlookAddIn\{name}.OutlookAddIn.csproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkID=299083&projecttype=BAA0C2D2-18E2-41B9-852F-F413020CAA33

When I open up the Solution file in a text editor I can see that they used an older Visual Studio version than mine:

VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1

My version:

12.0.40629.00 Update 5

I also tried to open the Solution in Visual Studio 2015 with the same problem.

Is it possible to download the specific version (12.0.21005.1) to see if I would be able to open the solution without problems?

Or is it possible, from the information from Visual Studio and the Migration Report, to know what to do?

Or is it possible that the Community version that I'm using is causing these problems?

like image 539
Westerlund.io Avatar asked Jan 07 '16 07:01

Westerlund.io


People also ask

How do I fix access denied in Visual Studio?

0x80070005 - Access Denied To work around this issue, coordinate with your system administrator or other IT professional to make sure that these processes don't lock Visual Studio files. The user who is trying to install Visual Studio doesn't have administrator credentials on the computer.

How do I open the solution window in Visual Studio?

If you don't see the Solution Explorer tool window, you can open it from the Visual Studio menu bar by using View > Solution Explorer, or by pressing Ctrl+Alt+L.

How do I update Visual Studio solutions?

To upgrade a project created in an earlier version of Visual Studio, just open the project in the latest version of Visual Studio. Visual Studio offers to upgrade the project to the current schema. If you choose No, the project doesn't get upgraded.


1 Answers

Setup projects are no longer supported by newer versions of VS. E.g.: https://blogs.msdn.microsoft.com/buckh/2011/03/17/visual-studio-setup-projects-vdproj-will-not-ship-with-future-versions-of-vs/

As for OutlookAddIn project, I guess you need some additional plugin to VS?

like image 173
slawekwin Avatar answered Sep 21 '22 00:09

slawekwin