-
Notifications
You must be signed in to change notification settings - Fork 2
/
Hi3Helper.Sophon.Universal.csproj
52 lines (48 loc) · 2.79 KB
/
Hi3Helper.Sophon.Universal.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
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0;net7.0;net6.0;netstandard2.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Platforms>x64</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>NOSTREAMLOCK</DefineConstants>
<IsAotCompatible>true</IsAotCompatible>
<IsTrimmable>true</IsTrimmable>
<Version>1.3.0</Version>
<AssemblyVersion>1.3.0</AssemblyVersion>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AssemblyName>Hi3Helper.Sophon</AssemblyName>
<AssemblyTitle>Hi3Helper.Sophon - A deserializer and downloader for the new HoYoverse/miHoYo Launcher's Sophon chunk-based download method.</AssemblyTitle>
<Description>Hi3Helper.Sophon is a tool used by Collapse Launcher project to deserialize and download files using a new HoYoverse/miHoYo Launcher's Sophon chunk-based download method.</Description>
<PackageProjectUrl>https://github.com/CollapseLauncher/Hi3Helper.Sophon</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright (c) 2024 Collapse Project Team, Kemal Setya Adhi (neon-nyan)</Copyright>
<Authors>neon-nyan</Authors>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>sophon</PackageTags>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Optimize>True</Optimize>
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="*" />
<PackageReference Include="Hi3Helper.ZstdNet" Version="*" />
<PackageReference Include="System.Buffers" Version="*" Condition="$(DefineConstants.Contains('NETSTANDARD2_0'))" />
<PackageReference Include="System.IO.Hashing" Version="*" />
<PackageReference Include="System.Net.Http" Version="*" Condition="$(DefineConstants.Contains('NET45'))" />
<PackageReference Include="System.Net.Http.Json" Version="*" Condition="$(DefineConstants.Contains('NETSTANDARD2_0'))" />
<PackageReference Include="System.Text.Json" Version="*" Condition="$(DefineConstants.Contains('NETSTANDARD2_0'))" />
<PackageReference Include="System.Threading.Tasks" Version="*" Condition="$(DefineConstants.Contains('NETSTANDARD2_0'))" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="*" Condition="$(DefineConstants.Contains('NETSTANDARD2_0'))" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="*" Condition="$(DefineConstants.Contains('NETSTANDARD2_0'))" />
</ItemGroup>
</Project>