Swagger.NET MVC Api Exception(Swagger.NET MVC API 异常)
问题描述
我一直在寻找提供自动生成的 API 文档的不同选项,而 Swagger 似乎就在那里.
I've been looking at different options for providing auto generated API Documentation and Swagger seems to be up there.
但是,当我第一次尝试这个时,我在启动时遇到异常.
However when trying this out for the first time I'm getting exceptions on start up.
运行 Visual Studio 2013.
创建新的 Web API 项目.
使用包管理器,运行:
Running Visual Studio 2013.
Create new Web API project.
Using Package Manager, run:
Install-Package Swagger.Net & Install-Packager Swagger.Net.UI
确保我们已启用 XML 文档,但我们会收到此异常:
Making sure we've enable the XML documentation we get this exception:
Method 'GetDocumentation' in type 'Swagger.Net.XmlCommentDocumentationProvider'
from assembly 'Swagger.Net, Version=0.5.1.0, Culture=neutral, PublicKeyToken=null'
does not have an implementation.
还有其他人知道我们缺少的步骤吗?我们发现 &跟着这个:
https://github.com/Swagger-Net/Swagger.Net/wiki
https://github.com/Swagger-Net/Swagger.net/blob/master/README.md
Does anyone else know of a step we are missing? We found & followed this:
https://github.com/Swagger-Net/Swagger.Net/wiki
https://github.com/Swagger-Net/Swagger.Net/blob/master/README.md
推荐答案
Swagger 不支持 .NET 4.5 - 必须从 git 中获取源代码并修改它以使用 4.5.
Swagger doesn't support .NET 4.5 - Had to get the source code out from git and modify it to work with 4.5.
右键单击项目并在其中设置目标框架
Right click the project and set the target framework in there
这篇关于Swagger.NET MVC API 异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Swagger.NET MVC API 异常


- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01