Add cake.csproj

This commit is contained in:
miterosan 2018-08-06 23:14:51 +02:00
parent 580d478dc8
commit 058a6d9e13
2 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@ -13,6 +13,7 @@
### Cake ###
tools/*
!tools/packages.config
!tools/cake.csproj
# Build results
bin/[Dd]ebug/

9
tools/cake.csproj Normal file
View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cake.CoreCLR" Version="0.29.0" />
</ItemGroup>
</Project>