mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
a565b19ffb
* SM-768: Update EFCore and related packages to >= 7.0 * SM-768: Update more packages for the EF 7 upgrade * SM-768: Update the PostgreSQL package * SM-768: Run dotnet restore --force-evaluate * SM-768: Revert package upgrades for 3 projects * SM-768: Update the dotnet-ef tool
18 lines
576 B
XML
18 lines
576 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.5" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Identity\Identity.csproj" />
|
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|