Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Merge branch 'features/update-cake'
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielweyer committed Jan 18, 2018
2 parents b801887 + 3ae1053 commit 5c4f9ad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ environment:
# `install` will run before `build_script`
install:
# `dotnet-install.ps1` is available at: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script
# `Cake.dll` is targeting `.NET Core` `1.0.3`, so we need to install the latest `1.0.x` runtime
# `Cake.dll` is targeting `.NET Core` `1.0.9`, so we need to install the latest `1.0.x` runtime
# The runtime is required to run a `.NET Core` application, it's part of the `SDK`
# https://github.com/dotnet/core/blob/master/release-notes/download-archive.md
- ps: .\build\dotnet-install.ps1 -SharedRuntime -Version 1.0.8
- ps: .\build\dotnet-install.ps1 -SharedRuntime -Version 1.0.9
# `SimpleRouting` is targeting `.NET Core` `2.0`, so we can safely install the latest `SDK`
# The `SDK` is required to restore, build, publish... a `.NET Core` application
# https://www.microsoft.com/net/download/windows
Expand Down
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ Task("Build")
{
Configuration = configuration,
NoIncremental = true,
NoRestore = true,
MSBuildSettings = new DotNetCoreMSBuildSettings()
.SetVersion(assemblyVersion)
.WithProperty("FileVersion", packageVersion)
.WithProperty("InformationalVersion", packageVersion)
.WithProperty("nowarn", "7035"),
ArgumentCustomization = args => args.Append("--no-restore")
.WithProperty("nowarn", "7035")
};
DotNetCoreBuild(solutionPath, settings);
Expand Down Expand Up @@ -103,9 +103,9 @@ Task("Pack")
{
Configuration = configuration,
NoBuild = true,
NoRestore = true,
IncludeSymbols = true,
OutputDirectory = packagesDir,
ArgumentCustomization = args => args.Append("--no-restore"),
MSBuildSettings = new DotNetCoreMSBuildSettings()
.WithProperty("PackageVersion", packageVersion)
};
Expand Down
2 changes: 1 addition & 1 deletion tools/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake.CoreCLR" version="0.23.0" />
<package id="Cake.CoreCLR" version="0.25.0" />
</packages>

0 comments on commit 5c4f9ad

Please sign in to comment.