-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSodaCL.csproj
47 lines (40 loc) · 1.62 KB
/
SodaCL.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ImplicitUsings>disable</ImplicitUsings>
<Product>Soda Craft Launcher</Product>
<AssemblyName>SodaCL</AssemblyName>
<AssemblyTitle>Soda Craft Launcher 启动器</AssemblyTitle>
<Description>一个清爽的 Minecraft 启动器</Description>
<Version>0.0.5.1</Version>
<FileVersion>0.0.5.1</FileVersion>
<Copyright>Copyright © 2022-2023 Soda Quantum Laboratory,All Rights Reserved.</Copyright>
<ApplicationIcon>Resources\Images\Dev.ico</ApplicationIcon>
<RootNamespace>SodaCL</RootNamespace>
<Nullable>disable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;SYSLIB0014</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;SYSLIB0014</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Images\Dev.ico" />
<None Remove="Resources\Images\Launcher-Bg.jpg" />
<None Remove="Resources\Images\Release.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="Token.xaml" />
<Resource Include="Resources\Images\Dev.ico" />
<Resource Include="Resources\Images\Launcher-Bg.jpg" />
<Resource Include="Resources\Images\Release.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.2" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>