Files
server/src/Admin/Admin.csproj

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

31 lines
1.1 KiB
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
2023-06-08 13:21:03 -04:00
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Admin' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Admin-SelfHost' " />
2018-03-21 12:57:43 -04:00
<ItemGroup>
<ProjectReference Include="..\..\util\MySqlMigrations\MySqlMigrations.csproj" />
<ProjectReference Include="..\..\util\PostgresMigrations\PostgresMigrations.csproj" />
<ProjectReference Include="..\SharedWeb\SharedWeb.csproj" />
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" />
<ProjectReference Include="..\..\util\SqliteMigrations\SqliteMigrations.csproj" />
2018-03-21 12:57:43 -04:00
</ItemGroup>
2021-06-30 09:35:26 +02:00
<Choose>
<When Condition="!$(DefineConstants.Contains('OSS'))">
<ItemGroup>
<ProjectReference Include="..\..\bitwarden_license\src\Commercial.Core\Commercial.Core.csproj" />
2021-06-30 09:35:26 +02:00
</ItemGroup>
</When>
</Choose>
2018-03-21 12:57:43 -04:00
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.26.1" />
2019-02-25 10:39:04 -05:00
</ItemGroup>
2018-03-21 12:57:43 -04:00
</Project>