| | |
| | | GlobalConfiguration.Configuration |
| | | .EnableSwagger(c => |
| | | { |
| | | c.SingleApiVersion("v1", "新凯迪MES平台在线接口文档"); |
| | | c.SingleApiVersion("v1", "新凯迪MES平台在线接口API"); |
| | | //c.IncludeXmlComments(string.Format("{0}/bin/VueWebApi.XML", System.AppDomain.CurrentDomain.BaseDirectory)); |
| | | //让swagger根据xml文档来解析 |
| | | c.IncludeXmlComments(GetXmlCommentsPath(thisAssembly.GetName().Name)); |
| | |
| | | }) |
| | | .EnableSwaggerUi(c => |
| | | { |
| | | c.DocumentTitle("新凯迪MES平台在线接口文档"); |
| | | c.DocumentTitle("新凯迪MES平台在线接口API"); |
| | | c.InjectJavaScript(thisAssembly, "VueWebApi.Scripts.swagger_lang.js");//汉化js |
| | | }); |
| | | } |