QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142) getrackt, ohne .gitmodules und ohne erreichbares Remote. Der Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen. Umstellung: - Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6) - Gitlink aus dem Index entfernt - Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
47 lines
1.7 KiB
YAML
47 lines
1.7 KiB
YAML
# Template for deploying artifacts to NuGet, Azure Pipelines, and SharePoint
|
|
steps:
|
|
# NuGet Package Deployments
|
|
- task: NuGetCommand@2
|
|
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
|
|
displayName: 'Deploy Artifact: Centron.WebServices.Core Nuget Package (NuGet)'
|
|
continueOnError: true
|
|
inputs:
|
|
command: push
|
|
nuGetFeedType: external
|
|
publishFeedCredentials: 'c-entron NuGet Server'
|
|
allowPackageConflicts: true
|
|
packagesToPush: 'artifacts/nuget/Centron.WebServices.Core.*.nupkg'
|
|
|
|
- task: NuGetCommand@2
|
|
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
|
|
displayName: 'Deploy Artifact: Centron.Interfaces Nuget Package (NuGet)'
|
|
continueOnError: true
|
|
inputs:
|
|
command: push
|
|
nuGetFeedType: external
|
|
publishFeedCredentials: 'c-entron NuGet Server'
|
|
allowPackageConflicts: true
|
|
packagesToPush: 'artifacts/nuget/Centron.Interfaces.*.nupkg'
|
|
|
|
- task: NuGetCommand@2
|
|
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
|
|
displayName: 'Deploy Artifact: Centron.Core Nuget Package (NuGet)'
|
|
continueOnError: true
|
|
inputs:
|
|
command: push
|
|
nuGetFeedType: external
|
|
publishFeedCredentials: 'c-entron NuGet Server'
|
|
allowPackageConflicts: true
|
|
packagesToPush: 'artifacts/nuget/Centron.Core.*.nupkg'
|
|
|
|
- task: NuGetCommand@2
|
|
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
|
|
displayName: 'Deploy Artifact: Centron.Controls Nuget Package (NuGet)'
|
|
continueOnError: true
|
|
inputs:
|
|
command: push
|
|
nuGetFeedType: external
|
|
publishFeedCredentials: 'c-entron NuGet Server'
|
|
allowPackageConflicts: true
|
|
packagesToPush: 'artifacts/nuget/Centron.Controls.*.nupkg'
|