-
Notifications
You must be signed in to change notification settings - Fork 0
/
TexturePacker.csproj
41 lines (41 loc) · 1.91 KB
/
TexturePacker.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
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<!--PublishSingleFile>true</PublishSingleFile-->
<!--SelfContained>true</SelfContained-->
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<PublishTrimmed>true</PublishTrimmed>
<Version>0.8.3</Version>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<!--RuntimeIdentifier>win-x64</RuntimeIdentifier-->
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="nlog.config" />
</ItemGroup>
<ItemGroup>
<Content Include="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ManaBattery.MB.RectangleBinPack" Version="0.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NLog" Version="5.3.4" />
<PackageReference Include="Roslynator.Analyzers" Version="4.12.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.4" />
<PackageReference Include="ManaBattery.MB.Base_Minimal" Version="0.0.3" />
<PackageReference Include="ManaBattery.MB.Graphics2_Minimal" Version="0.0.2" />
<PackageReference Include="ManaBattery.MB.Encoder.TextureAtlas.BTA" Version="0.0.4" />
</ItemGroup>
</Project>