From 9c790816b241643010aa0b72059f481b61a6964a Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 12:27:06 +0200 Subject: [PATCH 1/9] cambio zip: faccio sempre --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 229cf56..53551f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -163,10 +163,10 @@ Zcode:File:release: stage: release tags: - win - only: - refs: - - main - - master + # only: + # refs: + # - main + # - master # variables: # APP_NAME: NKC # PROJ_NAME: $env:APP_NAME From 4d61bc71e7beaf300cd54cf69c19f1132e2fabd3 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 12:29:16 +0200 Subject: [PATCH 2/9] test zip su deploy --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 53551f1..8dbb226 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -163,10 +163,10 @@ Zcode:File:release: stage: release tags: - win - # only: - # refs: - # - main - # - master + except: + refs: + - main + - master # variables: # APP_NAME: NKC # PROJ_NAME: $env:APP_NAME From 6bb4b02aaf55d3893c93b40aa4223bf15b71bbb7 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 12:31:00 +0200 Subject: [PATCH 3/9] correzione path x pubblicazione nexus --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8dbb226..4f6700b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -69,7 +69,7 @@ variables: { $version = "unstable" } - $File2Send = Get-ChildItem($env:PROJ_NAME + "\Release\*") + $File2Send = Get-ChildItem(".\$env:PROJ_NAME\Release\*") ForEach ($File in $File2Send) { $FileName = Split-path $File -leaf mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/$FileName @@ -142,7 +142,6 @@ Zcode:IIS03:deploy: - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS03.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' needs: ["Zcode:build"] - Zcode:OVH:release: stage: release tags: From 459094c12394091c4088931b5713368558d4dd92 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 12:34:16 +0200 Subject: [PATCH 4/9] =?UTF-8?q?cambio=20modalit=C3=A0=20calcolo=20path=20f?= =?UTF-8?q?ile=20zip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 64 +++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4f6700b..a687d33 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -69,7 +69,7 @@ variables: { $version = "unstable" } - $File2Send = Get-ChildItem(".\$env:PROJ_NAME\Release\*") + $File2Send = Get-ChildItem("$env:PROJ_NAME\Release\*") ForEach ($File in $File2Send) { $FileName = Split-path $File -leaf mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/$FileName @@ -94,39 +94,39 @@ Zcode:build: script: - '& "$env:MSBUILD_PATH" $env:APP_NAME/$env:APP_NAME.csproj -target:Build /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=bin/ /verbosity:minimal /m' -Zcode:IIS01:deploy: - stage: deploy - tags: - - win - except: - refs: - - main - - master - before_script: - - *nuget-fix - - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - - *version-fix - script: - - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' - needs: ["Zcode:build"] +# Zcode:IIS01:deploy: +# stage: deploy +# tags: +# - win +# except: +# refs: +# - main +# - master +# before_script: +# - *nuget-fix +# - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' +# - *version-fix +# script: +# - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' +# needs: ["Zcode:build"] -Zcode:IIS02:deploy: - stage: deploy - tags: - - win - except: - refs: - - main - - master - before_script: - - *nuget-fix - - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - - *version-fix - script: - - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' - needs: ["Zcode:build"] +# Zcode:IIS02:deploy: +# stage: deploy +# tags: +# - win +# except: +# refs: +# - main +# - master +# before_script: +# - *nuget-fix +# - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' +# - *version-fix +# script: +# - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' +# needs: ["Zcode:build"] -Zcode:IIS03:deploy: +# Zcode:IIS03:deploy: stage: deploy tags: - win From 5fb1580c344b4b3ddcd212f229f0dff7f65861a7 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 12:36:04 +0200 Subject: [PATCH 5/9] rimetto stage deploy --- .gitlab-ci.yml | 62 +++++++++++++++++++++++++------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a687d33..051937e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -94,39 +94,39 @@ Zcode:build: script: - '& "$env:MSBUILD_PATH" $env:APP_NAME/$env:APP_NAME.csproj -target:Build /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=bin/ /verbosity:minimal /m' -# Zcode:IIS01:deploy: -# stage: deploy -# tags: -# - win -# except: -# refs: -# - main -# - master -# before_script: -# - *nuget-fix -# - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' -# - *version-fix -# script: -# - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' -# needs: ["Zcode:build"] +Zcode:IIS01:deploy: + stage: deploy + tags: + - win + except: + refs: + - main + - master + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' + - *version-fix + script: + - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' + needs: ["Zcode:build"] -# Zcode:IIS02:deploy: -# stage: deploy -# tags: -# - win -# except: -# refs: -# - main -# - master -# before_script: -# - *nuget-fix -# - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' -# - *version-fix -# script: -# - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' -# needs: ["Zcode:build"] +Zcode:IIS02:deploy: + stage: deploy + tags: + - win + except: + refs: + - main + - master + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' + - *version-fix + script: + - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' + needs: ["Zcode:build"] -# Zcode:IIS03:deploy: +Zcode:IIS03:deploy: stage: deploy tags: - win From aa41959b68799edf129f57fb0701e75944796fd8 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 12:39:07 +0200 Subject: [PATCH 6/9] inclusione proj path --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 051937e..958a1fa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -69,14 +69,14 @@ variables: { $version = "unstable" } - $File2Send = Get-ChildItem("$env:PROJ_NAME\Release\*") + $File2Send = Get-ChildItem("$CI_PROJECT_PATH\$env:PROJ_NAME\Release\*") ForEach ($File in $File2Send) { $FileName = Split-path $File -leaf mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/$FileName mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/ARCHIVE/$VersNumb/$FileName } - mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:PROJ_NAME\Resources\manifest.xml" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/manifest.xml - mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:PROJ_NAME\Resources\ChangeLog.html" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/ChangeLog.html + #mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:PROJ_NAME\Resources\manifest.xml" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/manifest.xml + #mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:PROJ_NAME\Resources\ChangeLog.html" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/ChangeLog.html stages: - build From 3828f45ec977dc4cc6042b23c74d0ab9c7597227 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 14:51:17 +0200 Subject: [PATCH 7/9] cambio sintassi upload nexus --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 958a1fa..a476da6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ variables: NEXUS_PATH: 'ZCode' APP_NAME: 'QR-GEN' APP_CONF: 'Release' + PROJ_NAME: 'QR-GEN' # helper x fix pacchetti nuget da repo locale nexus.steamware.net @@ -69,7 +70,7 @@ variables: { $version = "unstable" } - $File2Send = Get-ChildItem("$CI_PROJECT_PATH\$env:PROJ_NAME\Release\*") + $File2Send = Get-ChildItem("$env:PROJ_NAME\Release\*") ForEach ($File in $File2Send) { $FileName = Split-path $File -leaf mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/$FileName From d555bc08c78b219ce1bd01061490a769277f6727 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 14:54:04 +0200 Subject: [PATCH 8/9] test step deploy su OVH --- .gitlab-ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a476da6..5c51564 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -147,7 +147,7 @@ Zcode:OVH:release: stage: release tags: - win - only: + except: refs: - main - master @@ -163,22 +163,16 @@ Zcode:File:release: stage: release tags: - win - except: + only: refs: - main - master - # variables: - # APP_NAME: NKC - # PROJ_NAME: $env:APP_NAME - # NEXUS_PATH: NKC before_script: - *nuget-fix - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - *version-fix -# - *manifest-fix script: - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=FileExport.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' -# # qui il deploy su nexus... - *hashBuild - *nexusUpload needs: ["Zcode:build"] From e0b95d5b20baad1faf6f51e2855a11b2df7d8ea0 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 11 Apr 2022 15:10:20 +0200 Subject: [PATCH 9/9] Correzione finale pubblicazione in master --- .gitlab-ci.yml | 12 ++++++------ QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml | 2 +- .../Properties/PublishProfiles/OVH-PROD.pubxml.user | 1 + 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c51564..7d6d91b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -108,7 +108,7 @@ Zcode:IIS01:deploy: - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - *version-fix script: - - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' + - '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' needs: ["Zcode:build"] Zcode:IIS02:deploy: @@ -124,7 +124,7 @@ Zcode:IIS02:deploy: - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - *version-fix script: - - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' + - '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' needs: ["Zcode:build"] Zcode:IIS03:deploy: @@ -140,14 +140,14 @@ Zcode:IIS03:deploy: - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - *version-fix script: - - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS03.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' + - '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS03.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' needs: ["Zcode:build"] Zcode:OVH:release: stage: release tags: - win - except: + only: refs: - main - master @@ -156,7 +156,7 @@ Zcode:OVH:release: - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - *version-fix script: - - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=OVH-PROD.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=steamware /p:Password=viaD@nte16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' + - '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=OVH-PROD.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=steamware /p:Password=viaD@nte16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' needs: ["Zcode:build"] Zcode:File:release: @@ -172,7 +172,7 @@ Zcode:File:release: - '& "$env:NUGET_PATH" restore $env:APP_NAME.sln -Verbosity quiet' - *version-fix script: - - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=FileExport.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' + - '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=FileExport.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj' - *hashBuild - *nexusUpload needs: ["Zcode:build"] diff --git a/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml b/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml index be42943..7070c67 100644 --- a/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml +++ b/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml @@ -14,7 +14,7 @@ modificando il file MSBuild. Per altre informazioni su questo argomento, vedere https://172.16.0.214:8172/MsDeploy.axd qrcode.steamware.net - true + false WMSVC true steamware diff --git a/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml.user b/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml.user index 3f1c56e..20ee716 100644 --- a/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml.user +++ b/QR-GEN/Properties/PublishProfiles/OVH-PROD.pubxml.user @@ -7,5 +7,6 @@ modificando il file MSBuild. Per altre informazioni su questo argomento, vedere AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAw3dMMgC4FUywyOTV2xvCRgAAAAACAAAAAAADZgAAwAAAABAAAAA85eiHosnLZKazr6wK6WfJAAAAAASAAACgAAAAEAAAABhoEMLX9TA+Kp5dsd8O/KgYAAAAsf9Ap2KAI6JCWzjaN1NV3PQO8F6pUIFBFAAAAKE6Rw49Z7t03hkWxf0ADxRSQwF9 + True|2022-04-11T13:08:00.6598223Z;False|2022-04-11T15:05:00.5236071+02:00;False|2022-04-11T15:01:15.6459241+02:00; \ No newline at end of file