I have a project in a solution I am working on in Visual Studio 2012, and I get this message for one of the projects: "This version of Visual Studio does not have the following project types installed, or does not support them." It is a vdproj. What does this mean and how do I resolve this problem
6 Answers
The correct procedure to resolve "Incompatible" issue with VDPROJ Projects coming from Visual Studio 2010 and 2015 in 2017, 2019 or 2022 is:
- Enter Visual Studio .NET 2017, 2019 or 2022
-
- 2017: Click on "Tools" -> Extension and Updates -> Online
- 2019 or higher: Click on "Extensions" -> Manage Extensions -> Online
- Type "Installer Project" on the search box
- Click on "Install" in Microsoft Visual Studio Installer Project
- Restart Visual Studio .NET and follow the instructions to install the extension
- Right click on the projects which have "Incompatible" and click "reload" (tested in VS2022).
With this extension the old project (2010, 2015) is capable to work in (2017, 2019, 2022). VDPROJ are not deprecated, simply they are improved with a new extension, for more information about this please visit the oficial MarketPlace.

- 2,431
- 2
- 7
- 9
-
46I had to do a "Reload Project" after installing the extension before the "Incompatible" project designation would go away on VS2019. – MZB Aug 07 '19 at 16:08
-
25Now under "Extensions" -> "Manage Extensions" – Jeremie Weldin Nov 21 '19 at 15:22
-
2This doesn't work. After installing and enabling, VDPROJ projects are still "incompatible". – The Lizard Jul 10 '20 at 13:02
-
6Works as of Feb 2021 :) – Scotty Feb 11 '21 at 23:07
-
Works for me too. Close Visual Studio and install extension then start visual studio again. After properly start VS, open your solution. In case your setup project excluded then include it in solution. – Kuldeep Gill Jun 11 '21 at 12:59
-
9Can confirm it works, you need to right click on the projects which have "Incompatible" and click "reload". – user2924019 Sep 08 '21 at 13:29
-
Extensions -> Manage Extensions. Make sure the VSIX window doesn't get hidden behind other windows. Close VS, install the extension, start VS. Reload project. – Skrymsli Sep 21 '21 at 16:32
-
After about 6 months I had the same issue; it was still installed under the Extensions but was disabled. Re-enabled, Re-started VS, Re-loaded the project and all worked again. – denvercoder9 Sep 29 '21 at 21:53
-
2It's also working for Visual Studio 2022. Extension: https://marketplace.visualstudio.com/items?itemName=VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects Then reload project as MZB noted – tretom Dec 07 '21 at 12:31
-
Works as of April/2023 with Visual Studio Enterprise 2022 Preview. Remember you need to right click on the projects which have "Incompatible" and click "reload". – Julian Rios Apr 22 '23 at 22:59
There is also the official:
- Microsoft Visual Studio 2015 Installer Projects
- Microsoft Visual Studio 2013 Installer Projects
- Microsoft Visual Studio Installer Projects (2017 & 2019)
- Microsoft Visual Studio 2022 Installer Projects
if you can jump to VS 2013, 2015, 2017+2019, or 2022
But BozoJoe is right, its time to drop vdproj and move on to WiX.

- 1,303
- 10
- 23
-
Fixed my issue temporarily, but then about 6 months later for no discernible reason my install projects all went back to being incompatible. Reinstalling has not helped. – Jonathon Cowley-Thom Apr 09 '19 at 14:01
-
-
Installer projects do not work in VS anymore. Looks like they removed compatibility in 16.0.1 – The Lizard Jul 10 '20 at 13:01
-
I'm running VS 2019 version 16.6.3 and the extension version 0.9.8 and I can load my legacy-style installer projects - maybe there is something wrong with your .vdproj or Visual Studio installation? – jeoffman Jul 13 '20 at 11:04
-
Microsoft just released version 0.9.9 of this extension (2020/09/16) so the .vdproj is not quite as "dead" as we might think. – jeoffman Sep 16 '20 at 13:45
vdproj is a MSI creation project for Visual Studio. Its been deprecated and most people have moved on to either WIX or NSIS or a professional grade installer creation tools such as Install Shield.
If you do not require an installer for your product just exclude the vdproj project from the solution and continue with your life
for fun if you want to try to transition right away to wix, try this powershell script https://github.com/chrisoldwood/vdproj2wix
-
5
-
14This should not be marked as the correct answer John Pittaway has provided a link in his comment to the required installer for 2017 - I installed this and my vdproject is working as expected again – Rob Dec 21 '18 at 06:14
-
Yes, John Pittaway's answer worked for me as well. Also, for VS 2015, there was a different extension that was called "Visual Studio Setup and Deployment Projects" which worked for me for several years. – J.T. Taylor Jan 26 '19 at 01:28
-
1It's still a good choice for simple installers which don't warrant the near vertical learning curve of Wix. – Alan B Apr 04 '19 at 11:37
-
-
Visual Studio 2017 can use the Visual Studio Installer. It is NOT a default. You have to run InstallerProjects.vsix. You can get it at Microsoft Visual Studio 2017 Installer Projects. I have used it and worked great, at least for a windows GUI project. It's worth a shot before you get into the Install Shield intricacies.

- 919
- 9
- 9
-
3
-
1This is the most valid answer to the problem/question, it works for VS 2017 and VS 2019. Thanks – Tahir Alvi Feb 03 '21 at 08:32
if You use Microsoft Visual Studio Installer Project (Vs2017). Microsoft Visual Studio Installer Project may be disabled after an update.
- Tools -> Extensions and Updates..
- Click Installed
- Find and Select -> Microsoft Visual Studio Installer Project
- do Enable
- Restart Visual Studio

- 1,916
- 6
- 27
- 36

- 81
- 1
- 4
Just Download the new extension for Microsoft Visual Studio Installer Project to work.

- 11
- 3