Skip to content

Commit

Permalink
(build) Updated Cake tool to version 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Mar 7, 2017
1 parent b34c3e5 commit fc1a34e
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions build.cake
@@ -1,8 +1,8 @@
// Install addins.
#addin "nuget:https://www.nuget.org/api/v2?package=Newtonsoft.Json&version=9.0.1"
#addin "nuget:https://www.nuget.org/api/v2?package=Cake.Coveralls&version=0.2.0"
#addin "nuget:https://www.nuget.org/api/v2?package=Cake.Twitter&version=0.1.0"
#addin "nuget:https://www.nuget.org/api/v2?package=Cake.Gitter&version=0.2.0"
#addin "nuget:https://www.nuget.org/api/v2?package=Cake.Coveralls&version=0.4.0"
#addin "nuget:https://www.nuget.org/api/v2?package=Cake.Twitter&version=0.4.0"
#addin "nuget:https://www.nuget.org/api/v2?package=Cake.Gitter&version=0.5.0"

// Install tools.
#tool "nuget:https://www.nuget.org/api/v2?package=gitreleasemanager&version=0.5.0"
Expand Down Expand Up @@ -361,11 +361,11 @@ Task("Sign-Binaries")
var filter = File("./signclient.filter");
// Get the files to sign.
var files = GetFiles(string.Concat(parameters.Paths.Directories.NugetRoot, "/", "*.nupkg"))
var files = GetFiles(string.Concat(parameters.Paths.Directories.NugetRoot, "/", "*.nupkg"))
+ parameters.Paths.Files.ZipArtifactPathDesktop
+ parameters.Paths.Files.ZipArtifactPathCoreClr;
foreach(var file in files)
foreach(var file in files)
{
Information("Signing {0}...", file.FullPath);
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Expand Up @@ -31,7 +31,7 @@ Param(
[string[]]$ScriptArgs
)

$CakeVersion = "0.17.0"
$CakeVersion = "0.18.0"
$DotNetChannel = "preview";
$DotNetVersion = "1.0.0-preview2-003121";
$DotNetInstallerUri = "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview2/scripts/obtain/dotnet-install.ps1";
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -10,7 +10,7 @@ SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
TOOLS_DIR=$SCRIPT_DIR/tools
NUGET_EXE=$TOOLS_DIR/nuget.exe
NUGET_URL=https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
CAKE_VERSION=0.17.0
CAKE_VERSION=0.18.0
CAKE_EXE=$TOOLS_DIR/Cake.$CAKE_VERSION/Cake.exe

# Define default arguments.
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common.Tests/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"buildOptions": {
"platform": "anycpu",
"additionalArguments": [
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"description": "Provides aliases (extension methods on Cake context) that support CI, build, unit tests, zip, signing, etc. for Cake.",
"copyright": "Copyright (c) .NET Foundation and contributors",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Core.Tests/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"dependencies": {
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"Cake.Core": {
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Core/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"description": "The Cake core library.",
"copyright": "Copyright (c) .NET Foundation and contributors",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.NuGet.Tests/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"buildOptions": {
"platform": "AnyCpu",
"additionalArguments": [
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.NuGet/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"dependencies": {
"Cake.Core": {
"target": "project"
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Testing.Xunit/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"configurations": {
"Release": {
"buildOptions": {
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Testing/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"description": "Contains testing utilities for Cake.",
"copyright": "Copyright (c) .NET Foundation and contributors",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Tests/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"dependencies": {
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"Cake": {
Expand Down
2 changes: 1 addition & 1 deletion src/Cake/project.json
@@ -1,5 +1,5 @@
{
"version": "0.18.0-*",
"version": "0.19.0-*",
"buildOptions": {
"emitEntryPoint": true,
"xmlDoc": true,
Expand Down

0 comments on commit fc1a34e

Please sign in to comment.