From 246f03e869dddc7f0b700d0da058db064aaf09c5 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Thu, 24 Nov 2016 12:21:52 +0100 Subject: [PATCH] prova modifica jenkinsfile x pipeline --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c68842df..c15db8c0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,11 @@ #!groovy node { - echo 'Hello World' + stage 'Checkout' + checkout scm + + stage 'Build' + bat 'nuget restore GMW.sln' + bat "\"${tool 'MSBuild'}\" GMW.sln /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=1.0.0.${env.BUILD_NUMBER}" + } \ No newline at end of file