9

With VS 2010 or 2013, We can use this command to build .vdproj project(VSI):

<Exec Command="&quot;$(ProgramFiles)\Microsoft Visual Studio 9.0\Common7\IDE\devenv.com&quot; your.vdproj /build &quot;Debug|AnyCPU&quot;"/>

But in vs 2015, the VSI is an extension of vs. And the similar command(9.0 => 14.0) will get an error.

Anybody know how to solve it?

Chris Shao
  • 8,231
  • 3
  • 39
  • 37

2 Answers2

11

Microsoft Visual Studio 2015 Installer Projects extension must be installed.

KMoraz
  • 14,004
  • 3
  • 49
  • 82
6

I solved this problem by change the DWORD value for

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0_Config\MSBuild\EnableOutOfProcBuild

registry value to 0.

If this doesn't exist you can create it as a DWORD.

Chris Shao
  • 8,231
  • 3
  • 39
  • 37