-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathGenHTTP.Adapters.AspNetCore.csproj
More file actions
41 lines (25 loc) · 1.39 KB
/
GenHTTP.Adapters.AspNetCore.csproj
File metadata and controls
41 lines (25 loc) · 1.39 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Adapter to run GenHTTP handlers within an ASP.NET Core app.</Description>
<PackageTags>GenHTTP ASP.NET Core Adapter GenHTTP</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Andreas Nägeli, Tanzim Hossain Romel</Authors>
<!-- remove this line after Fleck has been removed -->
<NoWarn>CS1591,CS1587,CS1572,CS1573,CS0612,CS0618</NoWarn>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj"/>
<ProjectReference Include="..\..\Engine\Shared\GenHTTP.Engine.Shared.csproj" />
<ProjectReference Include="..\..\Modules\ClientCaching\GenHTTP.Modules.ClientCaching.csproj" />
<ProjectReference Include="..\..\Modules\Compression\GenHTTP.Modules.Compression.csproj" />
<ProjectReference Include="..\..\Modules\IO\GenHTTP.Modules.IO.csproj"/>
<ProjectReference Include="..\..\Modules\ErrorHandling\GenHTTP.Modules.ErrorHandling.csproj"/>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="10.0.7" />
</ItemGroup>
</Project>