-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAsyncFastCGI.NET.csproj
22 lines (20 loc) · 1.01 KB
/
AsyncFastCGI.NET.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>7.3</LangVersion>
<PackageId>AsyncFastCGI.NET</PackageId>
<Version>1.0.2</Version>
<Authors>Tamas Bolner</Authors>
<Title>Async FastCGI library for .NET Core</Title>
<Description>Fully async FastCGI client library for .NET Core, written in C#. A non-intrusive alternative for developing web applications.</Description>
<Copyright>Copyright 2019-2021 Tamas Bolner</Copyright>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageTags>fastcgi, nginx, dotnet, library, csharp</PackageTags>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<RepositoryUrl>https://github.com/bolner/AsyncFastCGI.NET</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Compile Include="lib/*.cs" Pack="true"/>
<None Include="LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)"/>
</ItemGroup>
</Project>