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) }