2018-08-01 16:07:20 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-08-07 22:31:00 +02:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-07-23 22:38:49 +02:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
2019-03-08 04:57:24 +01:00
|
|
|
|
<NoWarn>1701;1702;1705;NU1701</NoWarn>
|
2017-09-08 17:45:20 +02:00
|
|
|
|
<RootNamespace>Bit.Setup</RootNamespace>
|
2017-08-07 22:31:00 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2017-08-19 00:22:25 +02:00
|
|
|
|
<ItemGroup>
|
2018-08-30 17:35:44 +02:00
|
|
|
|
<EmbeddedResource Include="Templates\**\*.hbs" />
|
2017-08-19 00:22:25 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-05-12 02:56:49 +02:00
|
|
|
|
<PackageReference Include="Handlebars.Net" Version="1.10.1" />
|
2019-07-23 22:38:49 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
2019-05-12 02:56:49 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
2019-07-23 22:58:40 +02:00
|
|
|
|
<PackageReference Include="YamlDotNet" Version="6.1.2" />
|
2017-08-19 00:22:25 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-03-25 18:21:05 +01:00
|
|
|
|
<ItemGroup>
|
2019-03-25 18:23:50 +01:00
|
|
|
|
<ProjectReference Include="..\Migrator\Migrator.csproj" />
|
2019-03-25 18:21:05 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-08-07 22:31:00 +02:00
|
|
|
|
</Project>
|