Reputation: 2316
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
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