mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 01:55:55 -05:00
Decouples CloudRegion from Bit.Setup.Enums so any project consuming Core can reference it without a circular dependency back into the Setup utility. Updates the three downstream Setup references (Context.cs, Program.cs, Setup.csproj) to point at the new Bit.Core.Enums namespace. Lands as a standalone PR ahead of PM-35087 (FedRAMP / bitwarden-gov.com) so SHOT can review the Setup->Core boundary move in isolation. Refs: PM-38015
30 lines
878 B
XML
30 lines
878 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<NoWarn>1701;1702;1705;NU1701</NoWarn>
|
|
<!-- These opt outs should be removed when all warnings are addressed -->
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);CA1305</WarningsNotAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Templates\**\*.hbs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Handlebars.Net" Version="[2.1.6]" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="[10.0.7]" />
|
|
<PackageReference Include="YamlDotNet" Version="[11.2.1]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
<ProjectReference Include="..\Migrator\Migrator.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Setup.Test" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|