1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-23 12:25:16 +01:00
bitwarden-server/util/Setup/Setup.csproj

20 lines
546 B
XML
Raw Normal View History

2017-08-07 22:31:00 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<NoWarn>1701;1702;1705;NU1701</NoWarn>
2017-08-07 22:31:00 +02:00
</PropertyGroup>
<ItemGroup>
2017-08-19 18:52:05 +02:00
<EmbeddedResource Include="DbScripts\2017-08-19_00_InitialSetup.sql" />
</ItemGroup>
<ItemGroup>
2017-08-19 18:52:05 +02:00
<PackageReference Include="dbup" Version="3.3.5" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="System.Data.SqlClient" Version="4.4.0" />
</ItemGroup>
2017-08-07 22:31:00 +02:00
</Project>