2020-02-17 02:44:21 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
|
|
<ApplicationIcon />
|
|
|
|
<StartupObject />
|
|
|
|
<AssemblyName>RecrownedGTK.Tools</AssemblyName>
|
|
|
|
<RootNamespace>RecrownedGTK.Tools</RootNamespace>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-02-23 21:44:53 +00:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-02-17 02:44:21 +00:00
|
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0005" />
|
|
|
|
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta0005" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-02-23 21:44:53 +00:00
|
|
|
<ProjectReference Include="..\RecrownedGTK\RecrownedGTK.csproj" PrivateAssets="All" />
|
2020-02-17 02:44:21 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|