This repository was archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathRedHttpServer.csproj
More file actions
49 lines (49 loc) · 2.58 KB
/
RedHttpServer.csproj
File metadata and controls
49 lines (49 loc) · 2.58 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
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<Description>.NET Standard web application framework built on ASP.NET Core w/ Kestrel and inspired by Express.js</Description>
<Copyright>Copyright © Rosenbjerg 2020</Copyright>
<AssemblyTitle>RedHttpServer</AssemblyTitle>
<TargetFramework>netstandard2.1</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>RedHttpServer</AssemblyName>
<PackageId>RHttpServer</PackageId>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace>Red</RootNamespace>
<ApplicationIcon />
<OutputTypeEx>library</OutputTypeEx>
<StartupObject />
<Version>4.0.0</Version>
<PackageTags>red redhttp redhttpserver rhttpserver rhs http server web api expressjs http websocket middleware</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://RedHttp.github.io/Red/</PackageProjectUrl>
<PackageLicense>MIT</PackageLicense>
<PackageIconUrl>https://redhttp.github.io/Red/assets/red-large.png</PackageIconUrl>
<RepositoryUrl>https://github.com/RedHttp/Red</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<Authors>Malte Rosenbjerg</Authors>
<PackageReleaseNotes>Fix contentType optional parameter
Suppress OperationCanceledException in ws handler </PackageReleaseNotes>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<FileVersion>5.0.0.0</FileVersion>
<LangVersion>8</LangVersion>
<PackageVersion>5.2.1</PackageVersion>
<Title>Red</Title>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="2.2.1" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>
</Project>