-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApiCodeGenerator.MSBuild.nuspec
More file actions
26 lines (26 loc) · 1.28 KB
/
ApiCodeGenerator.MSBuild.nuspec
File metadata and controls
26 lines (26 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>$id$</id>
<version>$version$</version>
<authors>$author$</authors>
<developmentDependency>true</developmentDependency>
<description>Adds API client generation to the project based on the NSwag file and the API description document.</description>
<repository type="git" url="$repository$" />
<dependencies>
<dependency id="Microsoft.Extensions.ApiDescription.Client" version="10.0" />
<dependency id="NSwag.MSBuild" version="$nswagVersion$" />
</dependencies>
<license type="file">LICENSE</license>
<readme>README.MD</readme>
<tags>AsyncAPI OpenAPI Swagger CodeGen AspNet</tags>
</metadata>
<files>
<file src="bin\$configuration$\**\*.*" target="tools" exclude="bin\$configuration$\**\*.pdb" />
<file src="..\ApiCodeGenerator.OpenApi\bin\$configuration$\netstandard2.0\ApiCodeGenerator.OpenApi.dll" target="tools" />
<file src="..\ApiCodeGenerator.AsyncApi\bin\$configuration$\netstandard2.0\ApiCodeGenerator.AsyncApi.dll" target="tools" />
<file src="build\*" target="build" />
<file src="..\..\LICENSE" target="LICENSE" />
<file src="..\..\README.MD" target="README.MD" />
</files>
</package>