-
Notifications
You must be signed in to change notification settings - Fork 4
/
ShinDataUtil.csproj
33 lines (27 loc) · 988 Bytes
/
ShinDataUtil.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0007" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta0007" />
<PackageReference Include="System.Collections.Immutable" Version="1.7.0" />
<PackageReference Include="FastPngEncoderSharp" Version="1.0.3-beta" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<Compile Remove="NUnitTests\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Tests\**" />
<EmbeddedResource Remove="NUnitTests\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Tests\**" />
<None Remove="NUnitTests\**" />
</ItemGroup>
</Project>