Compare commits

..

3 Commits

Author SHA1 Message Date
Samuele E. Locatelli (W11-AI) f193f7e222 aggiunta nuget config 2026-06-28 21:05:22 +02:00
Samuele E. Locatelli (W11-AI) 0647165929 Inizio fix gitlab ci-cd 2026-06-28 21:02:18 +02:00
Samuele Locatelli 1c4cfdb3ef Merge tag 'CommonFusionCacheService_01' into develop
Fusion cache gestita x RouteWeight, tutto come servizio condiviso
IOC/RIOC
2026-06-22 17:25:44 +02:00
2 changed files with 21 additions and 2 deletions
+2 -2
View File
@@ -940,7 +940,7 @@ RIOC:installer:
rules:
- if: $CI_COMMIT_BRANCH == 'master'
- if: $CI_COMMIT_BRANCH == 'develop'
needs: ["IOC:build"]
needs: ["RIOC:build"]
script:
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
- dotnet publish -p:PublishProfile=IISProfile.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release $env:APP_NAME/$env:APP_NAME.csproj -o:publish -p:verbosity=quiet
@@ -1154,7 +1154,7 @@ RIOC:release:
- dotnet restore "$env:SOL_NAME.sln"
rules:
- if: $CI_COMMIT_TAG
needs: ["IOC:build"]
needs: ["RIOC:build"]
artifacts:
paths:
- publish/
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<!-- Rimuove tutte le sorgenti predefinite -->
<add key="nexus-proxy-v3" value="https://nexus.steamware.net/repository/nuget-proxy-v3/index.json" />
<add key="nexus-hosted" value="https://nexus.steamware.net/repository/nuget-hosted/" />
</packageSources>
<packageSourceCredentials>
<nexus-proxy-v3>
<add key="Username" value="nugetUser" />
<add key="ClearTextPassword" value="$env:NEXUS_PASSWD" />
</nexus-proxy-v3>
<nexus-hosted>
<add key="Username" value="nugetUser" />
<add key="ClearTextPassword" value="$env:NEXUS_PASSWD" />
</nexus-hosted>
</packageSourceCredentials>
</configuration>