2
0
mirror of synced 2025-02-05 13:15:10 +00:00
cs-codex-dist-tests/DistTestCore/DistTestCore.csproj

29 lines
1.1 KiB
XML
Raw Normal View History

2023-04-12 13:53:55 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-05-02 12:20:43 +10:00
<TargetFramework>net7.0</TargetFramework>
2023-04-12 13:53:55 +02:00
<RootNamespace>DistTestCore</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsArm64 Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'Arm64'">true</IsArm64>
</PropertyGroup>
<PropertyGroup Condition="'$(IsArm64)'=='true'">
<DefineConstants>Arm64</DefineConstants>
2023-04-12 13:53:55 +02:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2023-04-12 13:53:55 +02:00
<PackageReference Include="nunit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
</ItemGroup>
<ItemGroup>
2023-09-12 13:32:06 +02:00
<ProjectReference Include="..\Core\Core.csproj" />
<ProjectReference Include="..\FileUtils\FileUtils.csproj" />
2023-04-12 13:53:55 +02:00
<ProjectReference Include="..\KubernetesWorkflow\KubernetesWorkflow.csproj" />
2023-04-12 16:12:04 +02:00
<ProjectReference Include="..\Logging\Logging.csproj" />
2023-04-14 12:37:05 +02:00
<ProjectReference Include="..\Nethereum\NethereumWorkflow.csproj" />
2023-04-12 13:53:55 +02:00
</ItemGroup>
</Project>