编程语言
首页 > 编程语言> > c# – Swagger / Swashbuckle无法使用Visual Studio 2013 Web API 2项目

c# – Swagger / Swashbuckle无法使用Visual Studio 2013 Web API 2项目

作者:互联网

我正在尝试通过Nuget包(Swashbuckle)安装Swagger但是我无法让它工作.

这是一个vanilla VS 2013 Web Api 2项目. JS控制台上有一个错误:Uncaught TypeError:无法读取null的属性’tags’.

在/swagger/ui/lib/underscore-min.map的请求中收到404

我发现了一个建议在webconfig中使用vs:EnableBrowserLink禁用BrowserLink的链接,但它似乎没有任何效果.

有任何想法吗?

解决方法:

我安装了Swashbuckle.Core,确保正在创建XML输出,并使用一点配置立即工作.

    public static void Register(HttpConfiguration config)
    {
        ...
        config
            .EnableSwagger(c =>
            {
                c.SingleApiVersion("v1", "My API Title");
                c.IncludeXmlComments(GetXmlCommentsFileLocation());
            })
            .EnableSwaggerUi();
        ...
    }

    private static string GetXmlCommentsFileLocation()
    {
        var baseDirectory = AppDomain.CurrentDomain.BaseDirectory + "\\bin";
        var commentsFileName = Assembly.GetExecutingAssembly().GetName().Name + ".XML";
        var commentsFileLocation = Path.Combine(baseDirectory, commentsFileName);
        return commentsFileLocation;
    }

标签:c,asp-net-web-api2,swagger,swagger-ui,swashbuckle
来源: https://codeday.me/bug/20190623/1275209.html