Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f193f7e222 | |||
| 0647165929 | |||
| 1c4cfdb3ef |
+2
-2
@@ -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/
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user