prova modifica jenkinsfile x pipeline

This commit is contained in:
Samuele E. Locatelli
2016-11-24 12:21:52 +01:00
parent da8190b524
commit 246f03e869
Vendored
+7 -1
View File
@@ -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}"
}