You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
28 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net8.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<IsPackable>false</IsPackable> |
|
<IsTestProject>true</IsTestProject> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" /> |
|
<PackageReference Include="xunit" Version="$(XUnitVersion)" /> |
|
<PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitRunnerVisualStudioVersion)"> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
<PrivateAssets>all</PrivateAssets> |
|
</PackageReference> |
|
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)"> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
<PrivateAssets>all</PrivateAssets> |
|
</PackageReference> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\..\src\Events\Events.csproj" /> |
|
<ProjectReference Include="..\IntegrationTestCommon\IntegrationTestCommon.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|