2023-06-21 08:28:40 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-10-03 14:02:28 +02:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-06-21 08:28:40 +02:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-09-20 13:33:58 +02:00
|
|
|
<ProjectReference Include="..\..\Framework\ArgsUniform\ArgsUniform.csproj" />
|
|
|
|
<ProjectReference Include="..\..\ProjectPlugins\CodexPlugin\CodexPlugin.csproj" />
|
2023-06-21 08:28:40 +02:00
|
|
|
<ProjectReference Include="..\DistTestCore\DistTestCore.csproj" />
|
2024-11-28 09:42:58 +01:00
|
|
|
<ProjectReference Include="..\ExperimentalTests\ExperimentalTests.csproj" />
|
2023-06-21 08:28:40 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|