cs-codex-dist-tests/DistTestCore/DistTestCore.csproj

29 lines
1.1 KiB
XML
Raw Normal View History

2023-04-12 11:53:55 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-05-02 02:20:43 +00:00
<TargetFramework>net7.0</TargetFramework>
2023-04-12 11:53:55 +00: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 11:53:55 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2023-04-12 11:53:55 +00: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 11:32:06 +00:00
<ProjectReference Include="..\Core\Core.csproj" />
<ProjectReference Include="..\FileUtils\FileUtils.csproj" />
2023-04-12 11:53:55 +00:00
<ProjectReference Include="..\KubernetesWorkflow\KubernetesWorkflow.csproj" />
2023-04-12 14:12:04 +00:00
<ProjectReference Include="..\Logging\Logging.csproj" />
2023-04-14 10:37:05 +00:00
<ProjectReference Include="..\Nethereum\NethereumWorkflow.csproj" />
2023-04-12 11:53:55 +00:00
</ItemGroup>
</Project>