1

Please enable "XML documentation file" in project properties with default (bin\EnterpriseServices.XML) value or edit value in App_Start\SwaggerNet.cs

silverArc
  • 938
  • 1
  • 11
  • 19

1 Answers1

2

Yes, from the git documentation

Enable "XML documentation file" and accept the default value, or specify a custom value (i.e. App_Data\Docs.XML), in the Web API's properties | Build menu (Alt+Enter). If you specify a custom value, you will need to edit the App_Start\SwaggerNet.cs file.

This means, go to your project's Properties > Build > Output Then check the box for "XML documentation file" You can either accept the default or specify your own. If you specify a custom value, you will need to edit the App_Start\SwaggerNet.cs file

Daniel E
  • 529
  • 1
  • 4
  • 18
  • the link i posted earlier (http://msdn.microsoft.com/en-us/library/vstudio/x4sa0ak0(v=vs.100).aspx) has the same info. Thanks for clarifying. – silverArc Feb 16 '14 at 11:37