-
Notifications
You must be signed in to change notification settings - Fork 0
/
XybLauncherCLI.csproj
28 lines (24 loc) · 1.02 KB
/
XybLauncherCLI.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DockerDefaultTargetOS>Windows</DockerDefaultTargetOS>
<ApplicationIcon>mainicon.ico</ApplicationIcon>
<AssemblyName>XybLauncherCLI</AssemblyName>
<RootNamespace>XybLauncher</RootNamespace>
<PlatformTarget>AnyCPU</PlatformTarget>
<Version>0.0.3</Version>
</PropertyGroup>
<ItemGroup>
<Content Include="mainicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DiscordRichPresence" Version="1.1.3.18" />
<PackageReference Include="SharpCompress" Version="0.37.2" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="Spectre.Console.ImageSharp" Version="0.46.1-preview.0.7" />
<PackageReference Include="Terminal.Gui" Version="1.9.0" />
</ItemGroup>
</Project>