Files
server/src/Admin/Admin.csproj

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
796 B
XML
Raw Normal View History

2018-08-01 10:07:20 -04:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2018-03-21 12:57:43 -04:00
<PropertyGroup>
<UserSecretsId>bitwarden-Admin</UserSecretsId>
</PropertyGroup>
2018-03-28 23:16:09 -04:00
2018-03-21 12:57:43 -04:00
<ItemGroup>
2019-03-25 13:23:50 -04:00
<ProjectReference Include="..\..\util\Migrator\Migrator.csproj" />
2018-03-21 12:57:43 -04:00
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
2021-06-30 09:35:26 +02:00
<Choose>
<When Condition="!$(DefineConstants.Contains('OSS'))">
<ItemGroup>
<ProjectReference Include="..\..\bitwarden_license\src\CommCore\CommCore.csproj" />
</ItemGroup>
</When>
</Choose>
2018-03-21 12:57:43 -04:00
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.21.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
<PackageReference Include="NewRelic.Agent" Version="8.41.0" />
2019-02-25 10:39:04 -05:00
</ItemGroup>
2018-03-21 12:57:43 -04:00
</Project>