2018-08-01 10:07:20 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-08-07 16:31:00 -04:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-01-10 08:33:13 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-03-07 22:57:24 -05:00
|
|
|
|
<NoWarn>1701;1702;1705;NU1701</NoWarn>
|
2017-09-08 11:45:20 -04:00
|
|
|
|
<RootNamespace>Bit.Setup</RootNamespace>
|
2017-08-07 16:31:00 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2017-08-18 18:22:25 -04:00
|
|
|
|
<ItemGroup>
|
2018-08-30 11:35:44 -04:00
|
|
|
|
<EmbeddedResource Include="Templates\**\*.hbs" />
|
2017-08-18 18:22:25 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-05-11 20:56:49 -04:00
|
|
|
|
<PackageReference Include="Handlebars.Net" Version="1.10.1" />
|
2020-03-04 22:01:28 -05:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.2" />
|
2020-01-10 16:14:16 -05:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-05-18 21:57:14 -04:00
|
|
|
|
<PackageReference Include="YamlDotNet" Version="8.1.1" />
|
2017-08-18 18:22:25 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2019-03-25 13:21:05 -04:00
|
|
|
|
<ItemGroup>
|
2019-03-25 13:23:50 -04:00
|
|
|
|
<ProjectReference Include="..\Migrator\Migrator.csproj" />
|
2019-03-25 13:21:05 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2017-08-07 16:31:00 -04:00
|
|
|
|
</Project>
|