#178: Configure Cake.Frosting build system

This commit is contained in:
Anton Kasyanov
2021-02-01 23:55:36 +02:00
parent e4229dcefc
commit 779ff2cf7c
14 changed files with 995 additions and 20 deletions

31
build/Build.csproj Normal file
View File

@@ -0,0 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackAsTool>true</PackAsTool>
<!-- Make sure start same folder .NET Core CLI and Visual Studio -->
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
</PropertyGroup>
<ItemGroup>
<None Remove="Themes\Github\Theme.css" />
<None Remove="Themes\Github\Theme.html" />
</ItemGroup>
<ItemGroup>
<Content Include="Themes\Github\Theme.css">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Themes\Github\Theme.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cake.Frosting" Version="1.0.0-rc0002" />
<PackageReference Include="Cake.MarkdownToPdf" Version="2.5.2" />
</ItemGroup>
</Project>