Install Silverlight 4 Toolkit without Visual Studio 2010 (for build server)

I was just informed that the Silverlight 4 Toolkit (last download) requires a preinstallation of VS 2010.

We are creating an automated build server for a very large Silverlight Prism project and would prefer not to complete the full installation of VS 2010 on an unmanned build machine.

  • Is VS 2010 required to install the Silverlight 4 Toolkit?
  • Why is this required?
  • Can I get around this (copy specific fragments from another Dev machine?)

Thanks in advance for any information.

+4
source share
2 answers

Do not install Toolkit at all. In these large, controllable scenarios, you probably want to copy the dll toolkit files to a folder that belongs to your change management system.

Ultimately, a toolbox is just a collection of DLLs. During installation, it does other things to use it as a developer, convenient for VS and Blend, but it does not have special requirements during assembly.

+1
source

The problem is that it does not install msbuild tasks. I found that you can only install the SDK by extracting it from the download tools. See here for more details: http://neilsleightholm.blogspot.com/2010/09/building-silverlight-4-applications.html .

+2
source

All Articles