amaters
amaters

Reputation: 2316

TeamCity buildstep for generating WSDL file

For a project we need to the wsdl files to be published in the artifacts folder.

For continuous integration we use TeamCity. The project type is a Windows Communication Service Project.

Is it possible to have a buildstep that will generate the wsdl files from a webservice project?

Upvotes: 0

Views: 252

Answers (1)

Orn Kristjansson
Orn Kristjansson

Reputation: 3485

Yes you can do that just from the project. Use a nant script or similar that can execute command line for you. Have the script execute the tool against your project, you can use CmdHelper for example. http://www.stephan-brenner.com/?page_id=82

Upvotes: 1

Related Questions