-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathGenHTTP.Modules.OpenApi.csproj
More file actions
31 lines (18 loc) · 938 Bytes
/
GenHTTP.Modules.OpenApi.csproj
File metadata and controls
31 lines (18 loc) · 938 Bytes
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
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Adds an endpoint to your service that describes the API using the Open API format</Description>
<PackageTags>GenHTTP HTTP Webserver C# Module OpenAPI</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj" />
<ProjectReference Include="..\Layouting\GenHTTP.Modules.Layouting.csproj" />
<ProjectReference Include="..\Reflection\GenHTTP.Modules.Reflection.csproj" />
<PackageReference Include="NSwag.Core" Version="14.7.1" />
<PackageReference Include="NSwag.Core.Yaml" Version="14.7.1" />
<PackageReference Include="NSwag.Generation" Version="14.7.1" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>