All checks were successful
Run the JSON parser tests / test (push) Has been skipped
23 lines
787 B
XML
23 lines
787 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackAsTool>true</PackAsTool>
|
|
<ToolCommandName>jtr</ToolCommandName>
|
|
<PackageOutputPath>./nupkg</PackageOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
|
<PackageReference Include="TextCopy" Version="6.2.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Jtr.Parsing.Json\Jtr.Parsing.Json.csproj" />
|
|
<ProjectReference Include="..\Jtr.Tools\Jtr.Tools.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|