1
0
mirror of https://github.com/bitwarden/server synced 2026-02-14 15:33:35 +00:00
Files
server/util/Migrator/Migrator.csproj
2026-02-13 18:39:11 +00:00

24 lines
727 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>