mirror of
https://github.com/bitwarden/server
synced 2025-12-17 16:53:23 +00:00
17 lines
644 B
XML
17 lines
644 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>EventsProcessor.Test</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="xunit.v3" Version="$(XUnitv3Version)" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\EventsProcessor\EventsProcessor.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|