Trying to build my project on the build server gives me the following error:

Microsoft (R) Build Engine Version 4.0.30319.1
error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\TeamData\Microsoft.Data.Schema.SqlTasks.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.

I solved this problem a few months ago, with installing Visual Studio 2010 on the Build Server. But now I'm setup a new server from scratch, and I want to know if there any better solution to solve this issue.

link|improve this question

66% accept rate
feedback

6 Answers

Building and publishing WAPs is not supported if VS is not installed. With that said, if you really do not want to install VS then you will need to copy all the files under %ProgramFiles32%\MSBuild\Microsoft. You will need to install the Web Deploy Tool as well. I think that is it.

link|improve this answer
1  
Web Deploy Tool? Do you mean this one(?): iis.net/download/webdeploy – Devtron Feb 25 '11 at 21:28
Yes that is the one. – Sayed Ibrahim Hashimi Dec 22 '11 at 3:17
feedback

To answer the title of the question (but not the question about the output you're getting):

Copying the following folder from your dev machine to your build server fixes this if it's just web applications

C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications

Remove x86 according to how your build breaks. If you have other project types you will probably need to copy the entire msbuild folder.

link|improve this answer
1  
I did this - worked for me – Jaco Pretorius May 30 '11 at 14:58
feedback

The latest Windows SDK, as mentioned above, in addition to the "Microsoft Visual Studio 2010 Shell (Integrated) Redistributable Package" for Microsoft.WebApplication.targets and "Microsoft Visual Studio Team System 2008 Database Edition GDR R2" for Microsoft.Data.Schema.SqlTasks.targets should alleviate the need to install Visual Studio 2010. However, installing VS 2010 maybe actually be less overall to download and less work in the end.

link|improve this answer
FYI - If you're trying to build Sql projects on a build server w/out installing full blown VS, you're out of luck with the Team System 2008 Database Edition GDR R2 installer mentioned here. It's pre-reqs are Visual Studio Team System 2008 Database Edition SP1 (English) or Visual Studio Team System 2008 Suite SP1 (English) AND Visual Studio 2008 Service Pack 1. It seems however you can copy SqlServer.targets out of .NET Framework\v4 directory and the TeamData msbuild targets files out of \program files\msbuild\microsoft\visual studio\v10.0\ and your csprojs will build. – Ethan J. Brown Mar 4 at 18:26
It's definitely not the prettiest solution, but to me time is the most important. Simply copying over the MSBuild directory just lead to more issues for me. – John Apr 24 at 17:33
1  
This is a really important answer because if you are an independent developer setting up a build server for a client, you don't want the client to have to maintain a Visual Studio license to be able to build their software. – thelsdj Apr 27 at 8:08
feedback

I have found this on MS connect:

Yes, you need to install Visual Studio 2010 on your build machine to build database projects. Doing so does not require an additional license of Visual Studio.

So, this is the only option that I have for now.

link|improve this answer
feedback

You need to install at least the SDK which includes MSBuild. Here's a blog post announcing the availability of this SDK for .NET 4.0.

link|improve this answer
I'll try this. that's definitely better than installing visual studio. – stacker Oct 20 '10 at 18:12
The SDK size is pretty big... 570.9MB! – stacker Oct 20 '10 at 18:17
I completely understand your frustration :-) – Darin Dimitrov Oct 20 '10 at 18:17
2  
Installing the SDK did not resolve the issue. I still get the same error when trying to build. – stacker Oct 20 '10 at 22:05
feedback

I have had sucess copying the files from my dev machine to TFS. They should live in the same location on both machines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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