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 异常
基础教程推荐
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 如果条件可以为空 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 将数据集转换为列表 2022-01-01
