Click here to Skip to main content
15,904,416 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
I have a deployment project deployment.vdproj to which I have added the project output of project.csproj. I want to build deployment.vdproj through the command line
Posted
Updated 16-Apr-12 22:55pm
v2

1 solution

You need to call the Visual Studio .exe (devenv.exe) from the command line to do this, e.g:

devenv.exe MySetup_Project.vdproj /build Release

Further reading:

http://msdn.microsoft.com/en-us/library/xee0c8y7.aspx[^]
 
Share this answer
 
Comments
ramnath_k 17-Apr-12 7:08am    
hi jim thanks for your reply,
i have a problem,code is not working since I have added the project output of project.sln
jim lahey 17-Apr-12 9:02am    
"code is not working" - care to elaborate? I don't think you can add the project output of a solution: the clue is in the name, "project output" so it can't be a .sln file..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900