-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTokenPet.csproj
More file actions
37 lines (33 loc) · 1.52 KB
/
Copy pathTokenPet.csproj
File metadata and controls
37 lines (33 loc) · 1.52 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>1.0.2</VersionPrefix>
<AssemblyName>TokenPet</AssemblyName>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.9" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\pet_data\**" Link="pet_data\%(RecursiveDir)%(Filename)%(Extension)" Exclude="..\..\pet_data\pets\**;..\..\pet_data\*.log;..\..\pet_data\token_history.json;..\..\pet_data\pet_config.json;..\..\pet_data\proxy_targets.json;..\..\pet_data\*.cfg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<EmbeddedResource Include="..\..\pet_data\pets\**">
<LogicalName>pets/%(RecursiveDir)%(Filename)%(Extension)</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="favicon.ico">
<LogicalName>favicon.ico</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>