yl
2023-01-06 88f0b4f47865c4af3153049965411a7795bc5e4c
VueWebApi/App_Start/SwaggerConfig.cs
@@ -24,7 +24,7 @@
            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));
@@ -43,7 +43,7 @@
                })
                .EnableSwaggerUi(c =>
                {
                    c.DocumentTitle("新凯迪MES平台在线接口文档");
                    c.DocumentTitle("新凯迪MES平台在线接口API");
                    c.InjectJavaScript(thisAssembly, "VueWebApi.Scripts.swagger_lang.js");//汉化js
                });
        }