From 3785bf0012221b61fb6ac55b67ba383fc76840fe Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 18 Feb 2022 18:22:45 +0100 Subject: [PATCH 1/4] try fix main deploy lib task --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ddaeb86..eca9598 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -104,7 +104,8 @@ pipeline { }, MAIN_LIB: { // BUILD! - bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=${env.config} /p:Platform=\"Any CPU\" /p:OutputPath=bin/${env.config} /verbosity:minimal /m" + bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:OutputPath=bin/ /verbosity:minimal /m" + //bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=${env.config} /p:Platform=\"Any CPU\" /p:OutputPath=bin/${env.config} /verbosity:minimal /m" // creo package NuGet... con version in modo da fare ANCHE le beta bat "e:\\nuget.exe pack ${WORKSPACE}\\SteamWareLib\\SteamWare.csproj -properties Configuration=${env.config} -Version ${env.packVers}" }, From a213b232c72c0971599826b8810336b821819353 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 18 Feb 2022 18:26:22 +0100 Subject: [PATCH 2/4] cambio vers AIM --- SteamWareLib/SteamWare.csproj | 4 ++-- SteamWareLib/packages.config | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SteamWareLib/SteamWare.csproj b/SteamWareLib/SteamWare.csproj index 8befcb1..cfe1855 100644 --- a/SteamWareLib/SteamWare.csproj +++ b/SteamWareLib/SteamWare.csproj @@ -68,8 +68,8 @@ true - - ..\packages\AIM.1.1.0\lib\netstandard2.0\AegisImplicitMail.dll + + ..\packages\AIM.1.0.3\lib\AegisImplicitMail.dll ..\packages\AjaxControlToolkit.20.1.0\lib\net40\AjaxControlToolkit.dll diff --git a/SteamWareLib/packages.config b/SteamWareLib/packages.config index 4a86ac9..f270d4d 100644 --- a/SteamWareLib/packages.config +++ b/SteamWareLib/packages.config @@ -1,6 +1,6 @@  - + From aef53f4275fb00fadf82dc7e89825df5dd05bae3 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 18 Feb 2022 18:29:17 +0100 Subject: [PATCH 3/4] Fix nuget release (maybe) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index eca9598..1d5c6a3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -107,7 +107,7 @@ pipeline { bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:OutputPath=bin/ /verbosity:minimal /m" //bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=${env.config} /p:Platform=\"Any CPU\" /p:OutputPath=bin/${env.config} /verbosity:minimal /m" // creo package NuGet... con version in modo da fare ANCHE le beta - bat "e:\\nuget.exe pack ${WORKSPACE}\\SteamWareLib\\SteamWare.csproj -properties Configuration=${env.config} -Version ${env.packVers}" + bat "e:\\nuget.exe pack ${WORKSPACE}\\SteamWareLib\\SteamWare.csproj -properties Configuration=Release -Version ${env.packVers}" }, REPORTS: { // BUILD Reports lib! From 9822806a320b7350ec09a138f0f481466c8cf534 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 18 Feb 2022 18:32:52 +0100 Subject: [PATCH 4/4] Ancora try fix jenkinsfile... --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1d5c6a3..f0b233e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -104,7 +104,7 @@ pipeline { }, MAIN_LIB: { // BUILD! - bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:OutputPath=bin/ /verbosity:minimal /m" + bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:OutputPath=bin/Release /verbosity:minimal /m" //bat "\"${tool 'MSBuild-16.0'}\" SteamWareLib\\SteamWare.csproj -target:Build /p:Configuration=${env.config} /p:Platform=\"Any CPU\" /p:OutputPath=bin/${env.config} /verbosity:minimal /m" // creo package NuGet... con version in modo da fare ANCHE le beta bat "e:\\nuget.exe pack ${WORKSPACE}\\SteamWareLib\\SteamWare.csproj -properties Configuration=Release -Version ${env.packVers}"