mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 01:55:55 -05:00
* [deps] Tools: Pin dependencies * [PM-24840] updated dependencies that are required with Net 10 switch --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alex Dragovich <adragovich@bitwarden.com> Co-authored-by: Alex Dragovich <46065570+itsadrago@users.noreply.github.com> Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
29 lines
887 B
XML
29 lines
887 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="[10.0.0]" />
|
|
<PackageReference Include="MartinCostello.Logging.XUnit" Version="[0.7.0]" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" />
|
|
<PackageReference Include="Rnwood.SmtpServer" Version="[3.1.0-ci0868]" />
|
|
<PackageReference Include="xunit" Version="[2.9.3]" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="[3.1.5]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|