-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHi3Helper.Http.Universal.csproj
More file actions
53 lines (46 loc) · 2.06 KB
/
Copy pathHi3Helper.Http.Universal.csproj
File metadata and controls
53 lines (46 loc) · 2.06 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
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net10.0</TargetFrameworks>
<Platforms>x64</Platforms>
<LangVersion>9.0</LangVersion>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<Version>2.0.1</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyVersion>2.0.1</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-2026 $(Company)</Copyright>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' != 'netstandard2.0'">
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Optimize>False</Optimize>
<DebugType>none</DebugType>
</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>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="10.0.9" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Net.Http" Version="*" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="*" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="*" />
</ItemGroup>
</Project>