2020-09-06 01:47:00 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-09-04 20:09:36 +02:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-09-06 01:47:00 +02:00
|
|
|
<AssemblyName>fxbc</AssemblyName>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Remove="Definitions.json" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Include="Definitions.json" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-05 23:45:33 +02:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2020-09-06 01:47:00 +02:00
|
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20427.1" />
|
|
|
|
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.3.0-alpha.20427.1" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Giants.BinTools\Giants.BinTools.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="NLog.config">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|