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