mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
18 lines
578 B
XML
18 lines
578 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<IsPackable>false</IsPackable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.15" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.15" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\..\src\Identity\Identity.csproj" />
|
|||
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|