I know that some companies allow you to install their products on build machines as required without requiring a separate license (DevExpress is one that comes to mind). However I was wondering if Microsoft had the same allowances on licenses.

MSBuild does not support vdproj directly and require you to run Visual Studio from the command line to build the setup project. See here

I need to produce a setup file via an automated build; do I need to purchase an additional license for the build machine?

Edit: I have spoken to our admin in charge of licensing and he was happy for me to install VS2008 on the build machine without purchasing an additional license, believing that a license should not be required. If I here more official information I will update again.

Edit 2: I have heard that Microsoft will allow VS2008 to be installed on a build machine as long as the instance is not being used by a developer for active development.

link|improve this question

2  
I'd produce the setup using WiX, which is free, open-source and works very well on a build server. – Lucero Apr 22 '09 at 23:22
feedback

3 Answers

up vote 5 down vote accepted

Here is the agreement (PDF link!). (There are different ones for different versions of VS). So it depends on how you read ...

General. One user may install and use copies of the software to design, develop, test and demonstrate your programs. Testing does not include staging on a server in a production environment, such as loading content prior to production use.

To me that says you don't need an additional license because one user can install and use copies. But, I am not a lawyer. :)

link|improve this answer
I tend to agree but it is suitably vague – benPearce Apr 22 '09 at 23:28
2  
For reference, VS 2010 EULA includes this text: "If your version of the software contains a BUILDSERVER.TXT file you may install copies of the files listed in it, onto your build machines, solely for the purpose of compiling and building your programs. We may list additional files at go.microsoft.com/fwlink/?LinkId=165518 to use for this same purpose." My copy of Visual Studio is from MSDN and I don't see that file anywhere obvious. – David Gardiner Aug 18 '11 at 10:34
feedback

msbuild.exe comes with .NET SDK, but just with the Framework. You can grab the 2.0 SDK here for free, but it's a big honking download. 3.5 is available as well, but it's even huger.

link|improve this answer
feedback

If you install visual studio, a separate license is required. But you don't have to install visual studio. You can use MSBuild, which is available for free as part of the SDK.

link|improve this answer
5  
As per the link in my question, msbuild does not build vdproj – benPearce Apr 22 '09 at 23:59
feedback

Your Answer

 
or
required, but never shown

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