mirror of
https://github.com/bitwarden/server
synced 2026-01-15 15:03:34 +00:00
24 lines
723 B
XML
24 lines
723 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="6.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|