2
0
mirror of synced 2025-01-12 17:44:08 +00:00
cs-codex-dist-tests/DistTestCore/DistTestCore.csproj

35 lines
1.2 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>
2023-08-11 12:38:26 +02:00
<ItemGroup>
<None Remove="Metrics\dashboard.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Metrics\dashboard.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
2023-04-12 13:53:55 +02:00
<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>
<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>