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>
|
2023-05-02 05:16:10 +00:00
|
|
|
|
<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>
|
2023-04-18 08:22:11 +00:00
|
|
|
|
<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>
|
|
|
|
|
<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>
|