Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I pass the XNAContentPipelineTargetPlatform parameter to MSBuild via TeamCity?

enter image description here

I'm working on a continuous integration setup for an XNA project. What I've done so far is to be sure to not run the TeamCity build agent as a service, so that XNA doesn't have any issues with creating a graphics device. The next speed bump I hit is the XNAContentPipelineTargetPlatform parameter.

What I've tried so far is passing the parameter as a command line parameter to MSBuild (A) and also passing the parameter as a configuration parameter (B). Both in both cases, TeamCity says that the property is required (and apparently not found) in order to build content.

share|improve this question

1 Answer

You shoud use system property in 'Properties and Environment Variables' section. TeamCity will put all system properties to MSBuild properties.

It's not recommend adding /p commandline parameters

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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