Swagger.NET MVC API 异常异常、NET、Swagger、API

2023-09-07 14:30:09 作者:孤酒

我一直在寻找提供自动生成的 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/wikihttps://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