forked from EmK530/BloxDump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBloxDump.csproj
More file actions
42 lines (38 loc) · 1.54 KB
/
Copy pathBloxDump.csproj
File metadata and controls
42 lines (38 loc) · 1.54 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<Target Name="CopyKtxDll" AfterTargets="Build">
<PropertyGroup>
<KtxDllPath>Libs\Ktx2Sharp\binaries\win-x64\$(Configuration)\ktx.dll</KtxDllPath>
</PropertyGroup>
<Copy
SourceFiles="$(KtxDllPath)"
DestinationFolder="$(OutputPath)"
SkipUnchangedFiles="true" />
</Target>
<PropertyGroup Condition="'$(Configuration)'=='RELEASE'">
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<SelfContained>true</SelfContained>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<PublishTrimmed>true</PublishTrimmed>
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
<PublishAot>true</PublishAot>
<ApplicationIcon>resource\BloxDump.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BCnEncoder.Net" Version="2.2.1" />
<PackageReference Include="Evergine.Bindings.Draco" Version="2025.5.16.10" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="RestSharp" Version="112.1.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
<PackageReference Include="System.Data.SQLite" Version="1.0.119" />
</ItemGroup>
</Project>