From 4c8da0b4413db71c25bb98183f826f72c870ea32 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Tue, 14 Jan 2020 09:51:21 +0100 Subject: [PATCH] Fix SDK (maybe) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c10a1fe..f89861a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -175,7 +175,7 @@ pipeline { }, failFast: false) } - /* preparo nuget pkg SOLO SDK / beta */ + /* preparo nuget pkg dell'SDK ma solo x branch SDK / beta */ else if (env.BRANCH_NAME == "SDK" || env.BRANCH_NAME.contains("beta") ) { // calcolo il config... if (env.BRANCH_NAME == "beta") { @@ -189,9 +189,9 @@ pipeline { // elimino vecchie build... bat "del /f /q *.nupkg" // BUILD! - bat "\"${tool 'MSBuild-16.0'}\" NKC_WF\\NKC_WF.csproj -target:Build /p:Configuration=${env.config} /p:Platform=\"Any CPU\" /p:OutputPath=bin/${env.config} /m" + bat "\"${tool 'MSBuild-16.0'}\" NKC_SDK\\NKC_SDK.csproj -target:Build /p:Configuration=${env.config} /p:Platform=\"Any CPU\" /p:OutputPath=bin/${env.config} /m" // creo package NuGet... con version in modo da fare ANCHE le beta - bat "e:\\nuget.exe pack ${WORKSPACE}\\NKC_WF\\NKC_WF.csproj -properties Configuration=${env.config} -Version ${env.packVers}" + bat "e:\\nuget.exe pack ${WORKSPACE}\\NKC_SDK\\NKC_SDK.csproj -properties Configuration=${env.config} -Version ${env.packVers}" // lancio upload con nuget! echo 'Start upload with nuget push'