4

I'm concerned about files should be included in a deployment of a .NET project. I have console applications that are consuming a WCF service. The WCF service is running over HTTP. Do I need to deploy all the XSD, SVCINFO, WSDL & SVCMAP files that are in the Service References folder?

Thanks for any help. I sure wish there was a single page at Microsoft that definitively explained what file types were required in a deployment.

Jeepy
  • 41
  • 1
  • 3

1 Answers1

9

The only bits you need at installation time are the compiled code and the .config file. The rest of the pieces (the code, WSDL, etc) or all for compile / design time.

Sameer Alibhai
  • 3,092
  • 4
  • 36
  • 36
RQDQ
  • 15,461
  • 2
  • 32
  • 59