-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathEliteAPI.Tests.csproj
More file actions
34 lines (29 loc) · 1.13 KB
/
EliteAPI.Tests.csproj
File metadata and controls
34 lines (29 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
<PackageReference Include="FluentAssertions" Version="8.10.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EliteAPI\EliteAPI.csproj" />
<ProjectReference Include="..\EliteVA\EliteVA.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="TestFiles\Bindings\HCS Custom.4.2.binds">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestFiles\Bindings\test.binds">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>