mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 01:55:55 -05:00
* [deps]: Update dotnet monorepo to v10 * fix up pins causing downgrades --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Derek Nance <dnance@bitwarden.com>
24 lines
728 B
XML
24 lines
728 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- These opt outs should be removed when all warnings are addressed -->
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);CA1305</WarningsNotAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="DbScripts\**\*.sql" />
|
|
<EmbeddedResource Include="DbScripts_transition\**\*.sql" />
|
|
<EmbeddedResource Include="DbScripts_finalization\**\*.sql" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="dbup-sqlserver" Version="[7.2.0]" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="[10.0.7]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|