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 异常
基础教程推荐
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- WPF 模态进度窗口 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
