Minify the buildscript and update to cake.0.30.0

Also remove the dependency on Cake.CoreCLR
cake.tool does not use the packages.config.
This commit is contained in:
miterosan
2018-10-04 18:57:14 +02:00
parent e47be64f91
commit 0724b47334
5 changed files with 21 additions and 23 deletions

View File

@ -1,9 +0,0 @@
<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>

11
tools/cakebuild.csproj Normal file
View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cake" Version="0.30.0" />
<DotnetCliToolReference Include="Cake.Tool" Version="0.30.0" />
</ItemGroup>
</Project>

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake.CoreClr" version="0.29.0" />
</packages>