I want to package my VS2010 web application project ready for deployment with msdeploy. On development machine I can do this using: MSBuild.exe "C:\path\to\WebApp.csproj" /target:package

But on my build server I get this error: error MSB4057: The target "package" does not exist in the project.

What am I missing on the build server?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 30 down vote accepted

I just got this working without installing VS2010 by following these steps on the build server:

  1. If .NET Framework 4 isn't installed, install it
  2. Install the Web Deployment tool from http://www.iis.net/download/webdeploy
  3. From the C:\Program Files\MSBuild\Microsoft\VisualStudio\v10.0 folder on your dev machine copy the "Web" and "Web Applications" folders to the equivalent directory on your build server.

This seems to work for me

link|improve this answer
1  
Also make sure that you use the .net 4 version of MSBuild.exe! (in %windows%\Microsoft.net\Framework\v4.0.30319) – AndyM Oct 7 '10 at 9:12
1  
In my case the problem was that I had copied accross the "Web Applications" folder, but not the "Web" folder. – willem Jun 9 '11 at 11:46
This answer got rid of this error. Thanks spmason! – Stewie Aug 31 '11 at 15:32
feedback

You need to have .Net 4.0 installed on the build server. The .Net 4.0 install will put the new MSBuild 4.0 which supports packaging web application projects.

Also, when you are running msbuild.exe make sure you are running the one that sits in the .Net 4.0 framework folder.

link|improve this answer
feedback

To solve this problem install Visual Studio 2010 on the build server and make sure you installed Visual Web Developer feature.

link|improve this answer
3  
It is not necessary to install Visual Studio on the build server. The build/deploy process only depends on a handful of files (see spmason's post) – Noah Heldman Mar 15 '11 at 4:47
I'm trying really hard not to downvote this... – hambonious Mar 13 at 14:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.