mirror of
https://github.com/bitwarden/server.git
synced 2025-06-13 22:40:48 -05:00

* [NO LOGIC] Rename MultiOrganizationEnterprise to BusinessUnit * [Core] Add IMailService.SendBusinessUnitConversionInviteAsync * [Core] Add BusinessUnitConverter * [Admin] Add new permission * [Admin] Add BusinessUnitConverterController * [Admin] Add Convert to Business Unit button to Organization edit page * [Api] Add OrganizationBillingController.SetupBusinessUnitAsync action * [Multi] Propagate provider type to sync response * [Multi] Put updates behind feature flag * [Tests] BusinessUnitConverterTests * Run dotnet format * Fixing post-main merge compilation failure
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>bitwarden-Admin</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Admin' " />
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Admin-SelfHost' " />
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\util\MySqlMigrations\MySqlMigrations.csproj" />
|
|
<ProjectReference Include="..\..\util\PostgresMigrations\PostgresMigrations.csproj" />
|
|
<ProjectReference Include="..\SharedWeb\SharedWeb.csproj" />
|
|
<ProjectReference Include="..\..\util\Migrator\Migrator.csproj" />
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
<ProjectReference Include="..\..\util\SqliteMigrations\SqliteMigrations.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Choose>
|
|
<When Condition="!$(DefineConstants.Contains('OSS'))">
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\bitwarden_license\src\Commercial.Core\Commercial.Core.csproj" />
|
|
<ProjectReference Include="..\..\bitwarden_license\src\Commercial.Infrastructure.EntityFramework\Commercial.Infrastructure.EntityFramework.csproj" />
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
</Project>
|