You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
579 B
22 lines
579 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<NoWarn>1701;1702;1705;NU1701</NoWarn> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<EmbeddedResource Include="Templates\**\*.hbs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Handlebars.Net" Version="2.1.2" /> |
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" /> |
|
<PackageReference Include="YamlDotNet" Version="11.2.1" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Migrator\Migrator.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|