-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathGenHTTP.Modules.OpenApi.csproj
More file actions
26 lines (14 loc) · 771 Bytes
/
GenHTTP.Modules.OpenApi.csproj
File metadata and controls
26 lines (14 loc) · 771 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Adds an endpoint to your service that describes the API using the Open API format</Description>
<PackageTags>HTTP Webserver C# Module OpenAPI</PackageTags>
</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.6.1" />
<PackageReference Include="NSwag.Core.Yaml" Version="14.6.1" />
<PackageReference Include="NSwag.Generation" Version="14.6.1" />
</ItemGroup>
</Project>