I have a visual studio installer project (.vdproj) and I wanted to build it from jenkins. Could someone provide me the solution for this? I tried with msbuild which didn't workout for me. Then i tried the following in batch file.
devenv.exe pathToProject\projectName.vdproj /build "Release|Any CPU"
which didn't work.
Then I tried this
devenv.com pathToProject\projectName.vdproj /build "Release|Any CPU"
In this case the project was built but .exe and .msi files were not created in the Release (nor Debug) folder.