-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathGenHTTP.Modules.ReverseProxy.csproj
More file actions
29 lines (17 loc) · 840 Bytes
/
GenHTTP.Modules.ReverseProxy.csproj
File metadata and controls
29 lines (17 loc) · 840 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Allows to serve content from a remote upstream server.</Description>
<PackageTags>GenHTTP HTTP Webserver C# Module Reverse Proxy Proxies</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Andreas Nägeli, Diogo Martins</Authors>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj" />
<ProjectReference Include="..\IO\GenHTTP.Modules.IO.csproj" />
<ProjectReference Include="..\Websockets\GenHTTP.Modules.Websockets.csproj" />
<PackageReference Include="System.IO.Pipelines" Version="10.0.7" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>