From c89af1568e431e7b3b28168dedb4a6f9cd9fc590 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 27 Jan 2014 11:14:26 -0800 Subject: [PATCH] * Use Env:BUILD_NUMBER to version packages --- makefile.shade | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/makefile.shade b/makefile.shade index 11a5c2e3b3..a12f88c6a4 100644 --- a/makefile.shade +++ b/makefile.shade @@ -1,6 +1,6 @@ var PROJECT='AspNet' -var VERSION='0.1.0' +var VERSION='0.1.${Environment.GetEnvironmentVariable("BUILD_NUMBER") ?? "0"}' use namespace='System' use namespace='System.IO' @@ -13,11 +13,11 @@ var repos='${new Dictionary { {"Logging", "git@github.com:aspnet/Logging.git"}, {"Data", "git@github.com:aspnet/Data.git"}, {"Razor", "git@github.com:aspnet/Razor.git"}, - {"Mvc", "git@github.com:aspnet/Mvc.git"}, + {"WebFx", "git@github.com:aspnet/WebFx.git"}, }}' default BASE_DIR='${Directory.GetCurrentDirectory()}' -default TARGET_DIR='${Path.Combine(BASE_DIR, "artifacts")}' +default TARGET_DIR='${Path.Combine(BASE_DIR, "artifacts", "build")}' #default .compile @@ -49,7 +49,7 @@ default TARGET_DIR='${Path.Combine(BASE_DIR, "artifacts")}' #only-compile target='compile' @{ - var failed = new Dictionary(); + var failed = new Dictionary(); foreach(var repo in repos) { try