Using a project file as a parameter in MSBuild with Hudson -


I'm currently using the Hudson Build system with MSBuild steps as part of the build, I have a project The file contains various targets, one of which is to start a construction with a visual studio. However, I have to go through this different project file in order to help in creating it, but I can not specify the exception 'MSBUILID: Error MSB 1018: Only one project can be specified.'

I believe this is because the system is unable to calculate which project parameter is considered, and what is the top-level goal? If so, then to solve it anyway.

Here's the snippet of the target project file:

   & Lt; / Target & gt;  

The MSBuild step looks like this:

  / t: VisualStudioTask -p: BuildType = "/ Build" p: ConfigurationSetup = " Release "-P: solution ="% 22 .. \ MyProject.vcproj% 22 " 

Many thanks Chris

Comments