From a1b9246fa03b2aa51e71fda2c857dc334b4459da Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Tue, 4 Apr 2017 16:39:24 +0200 Subject: [PATCH] fix admin (csproj al posto di sln) + parametri compilazione... --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5c7a174..9b04c0f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,11 +19,11 @@ pipeline { parallel ( HOME: { echo 'Build HOME Release' - bat "\"${tool 'MSBuild-14.0'}\" HOME\\HOME.csproj /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}" + bat "\"${tool 'MSBuild-14.0'}\" HOME\\HOME.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}" }, ADMIN: { echo 'Build ADMIN Release' - bat "\"${tool 'MSBuild-14.0'}\" GPW_Admin\\GPW_Admin.sln /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}" + bat "\"${tool 'MSBuild-14.0'}\" GPW_Admin\\GPW_Admin.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}" }, failFast: false) }