3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

asp.net > swagger

Last updated at Posted at 2018-07-19

環境

VS:VisualStudio2017
フレームワーク: .Net Framework 4.6

Swaggerをインストール

「ツール」→「NuGetパッケージマネージャー」→「NuGetパッケージの管理」

検索にSwashbuckle

image

実行

F5で実行する。

URLの後ろに「/swagger」を付けてアクセスする。
例)
http://localhost:60437/swagger/ui/index#/Values

以下のような画面が表示されれば成功

image

XMLコメントを表示する

以下のファイルを編集
App_Start > SwaggerConfig.cs

以下の文のコメントを外す

c.IncludeXmlComments(GetXmlCommentsPath());

SwaggerConfig.csの最後尾くらいに以下のメソッドを追加

private static string GetXmlCommentsPath()
{
        return string.Format(@"{0}\bin\SwaggerDemo.XML", System.AppDomain.CurrentDomain.BaseDirectory);
}

XMLの名称はアセンブリ名と一致させる。

image

この例では以下になる。

return string.Format(@"{0}\bin\SwaggerDemo.XML", System.AppDomain.CurrentDomain.BaseDirectory);

XMLコメント

以下のような容量でXMLコメントを付ける

        /// <summary>
        /// valuesをゲット
        /// </summary>
        /// <returns></returns>
        // GET api/values
        public IEnumerable<string> Get()
        {
            return new string[] { "value1", "value2" };
        }

実行

XMLコメントが表示される。

image

Swaggerの見た目変更

以下のファイルを編集
App_Start > SwaggerConfig.cs

以下の行を外し、containingAssemblyをthisAssemblyに変更する。
(thisAssemblyは SwaggerConfig.csの先頭らへんで定義されている)

c.CustomAsset("index", thisAssembly, "NameSpace.SwaggerExtensions.index.html");

NameSpaceには以下プロジェクト・プロパティで表示される規定の名前空間に表示されている名前を設定する。

image

この例では以下になる。

c.CustomAsset("index", thisAssembly, "ECommerceName.SwaggerExtensions.index.html");

Index.htmlの配置

SwaggerExtensionsフォルダを作成し、index.htmlファイルを作成する。

image

index.htmlファイルは以下をベースにする。
Swashbuckle/index.html at v5.5.3 · domaindrivendev/Swashbuckle

ビルドアクション

index.htmlのプロパティにて、ビルドアクションを埋め込みリソースに変更する
image

参考

c# - swagger-ui returns 500 after deployment - Stack Overflow

image

How to customize Swagger UI in ASP.NET Web API – Umamaheswaran

ASP.NET Web API2.2で、Swagger(Swashbuckle 5.1.5)を使う - BEACHSIDE BLOG

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?