-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHi3Helper.Http.csproj
39 lines (35 loc) · 1.33 KB
/
Hi3Helper.Http.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Platforms>x64</Platforms>
<LangVersion>9.0</LangVersion>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<DebugType>portable</DebugType>
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
<Version>2.0.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyVersion>2.0.0</AssemblyVersion>
<!-- Assembly Info Properties -->
<AssemblyName>Hi3Helper.Http</AssemblyName>
<ProductName>Hi3Helper.Http</ProductName>
<Product>Hi3Helper.Http</Product>
<Description>Http downloader with Multi-Session support</Description>
<Company>Collapse Launcher Team</Company>
<Authors>$(Company). neon-nyan, Cry0, bagusnl, shatyuka, gablm.</Authors>
<Copyright>Copyright 2022-2024 $(Company)</Copyright>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Optimize>True</Optimize>
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Test\**" />
<EmbeddedResource Remove="Test\**" />
<None Remove="Test\**" />
</ItemGroup>
</Project>