Reputation: 685
I'm trying to build RIA-enabled Silverlight project on the continuous integration server. There is no Visual Studio installed on it. Therefore I'm missing some libraries/targets.
What needs to be installed in order to build RIA project with only MSBuild?
Upvotes: 2
Views: 984
Reputation: 685
Not really obvious but:
msiexec /i RiaServices.msi SERVER=TRUE
C:\Program Files\Microsoft SDKs\RIA Services\v1.0\Libraries\Server\Microsoft.ServiceModel.DomainServices.Tools.dll
from dev machine where Visual Studio is installed (since SERVER=TRUE does not install this assembly).C:\Program Files\MSBuild\Microsoft\Silverlight\v4.0\Microsoft.VisualStudio.ServiceModel.targets
After that I managed to build it without Visual Studio.
Upvotes: 5