mirror of
https://github.com/bitwarden/server.git
synced 2025-01-19 21:21:22 +01:00
17 lines
368 B
XML
17 lines
368 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|||
|
<RootNamespace>Bit.Migrator</RootNamespace>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<EmbeddedResource Include="DbScripts\**\*.sql" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="dbup-sqlserver" Version="4.2.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|