1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

swagger cli tool fixes

This commit is contained in:
Kyle Spearrin 2020-01-10 16:06:44 -05:00
parent f7512445e4
commit ffeb2969c1
3 changed files with 14 additions and 0 deletions

View File

@ -53,6 +53,7 @@ before_build:
#dotnet restore #dotnet restore
} else { } else {
msbuild /t:restore msbuild /t:restore
dotnet tool restore
} }
build_script: build_script:

View File

@ -15,6 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.gitignore = .gitignore .gitignore = .gitignore
appveyor.yml = appveyor.yml appveyor.yml = appveyor.yml
build.sh = build.sh build.sh = build.sh
dotnet-tools.json = dotnet-tools.json
LICENSE.txt = LICENSE.txt LICENSE.txt = LICENSE.txt
NuGet.Config = NuGet.Config NuGet.Config = NuGet.Config
README.md = README.md README.md = README.md

12
dotnet-tools.json Normal file
View File

@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"swashbuckle.aspnetcore.cli": {
"version": "5.0.0-rc4",
"commands": [
"swagger"
]
}
}
}