-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpClientController.csproj
More file actions
35 lines (32 loc) · 1.16 KB
/
HttpClientController.csproj
File metadata and controls
35 lines (32 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>HardstuckGuild (Plenyx)</Authors>
<Copyright>MIT</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.0.2</Version>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/HardstuckGuild/HttpClientController.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/HardstuckGuild/HttpClientController</PackageProjectUrl>
<Platforms>AnyCPU;x64</Platforms>
<Description>HttpClient class with additional features.</Description>
<Title>HttpClientController</Title>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<PackageTags>hardstuck;httpclientcontroller</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>