-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFancadeImageGenerator.csproj
More file actions
34 lines (29 loc) · 894 Bytes
/
Copy pathFancadeImageGenerator.csproj
File metadata and controls
34 lines (29 loc) · 894 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Version>2.0.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<Reference Include="FancadeLoaderLib">
<HintPath>FancadeLoaderLib.dll</HintPath>
</Reference>
<Reference Include="MathUtils">
<HintPath>MathUtils.dll</HintPath>
</Reference>
<Reference Include="zlib.net">
<HintPath>zlib.net.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="clrcompression.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>