代码拉取完成,页面将自动刷新
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: '**/NcfPackageSources.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
# - task: UseDotNet@2
# displayName: 'Use .NET Core SDK 3'
# inputs:
# version: '3.1.x'
# packageType: 'sdk'
# - task: UseDotNet@2
# displayName: 'Use .NET SDK 6'
# inputs:
# version: '6.x'
# packageType: 'sdk'
# performMultiLevelLookup: true
# includePreviewVersions: true
# - task: UseDotNet@2
# displayName: 'Use .NET SDK 8'
# inputs:
# version: '8.x'
# packageType: 'sdk'
# performMultiLevelLookup: true
# includePreviewVersions: true
- task: DotNetCoreCLI@2
displayName: 'dotnet --list-sdks '
inputs:
command: custom
custom: '--list-sdks '
- script: |
dotnet workload install aspire
displayName: 'Install Aspire Workload'
# - task: DotNetCoreCLI@2
# displayName: 'dotnet workload list'
# inputs:
# command: custom
# custom: 'workload list'
- task: NuGetToolInstaller@1
displayName: 'Use NuGet 6.3.0'
inputs:
versionSpec: '6.3.0'
checkLatest: true
- task: NuGetCommand@2
inputs:
command: 'restore'
restoreSolution: '**/NcfPackageSources.sln'
feedsToUse: 'config'
externalFeedCredentials: 'nuget-jeffrey-full-key'
# - task: VSBuild@1
# inputs:
# solution: '$(solution)'
# msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:DesktopBuildPackageLocation="$(build.artifactStagingDirectory)\WebApp.zip" /p:DeployIisAppPath="Default Web Site"'
# platform: '$(buildPlatform)'
# configuration: '$(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: Build
inputs:
command: build
projects: '**/NcfPackageSources.sln'
arguments: '--configuration Release'
continueOnError: true
# - task: VSTest@2
# inputs:
# platform: '$(buildPlatform)'
# configuration: '$(buildConfiguration)'
# - task: NuGetToolInstaller@1
# displayName: 'Use NuGet 5.2.0'
# inputs:
# versionSpec: 5.2.0
# checkLatest: true
- task: NuGetCommand@2
displayName: Senparc.Ncf.Core -V0
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Core.0.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Core -V0 - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Core.0.*.snupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Core.AspNet
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Core.AspNet*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Core.AspNet - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Core.AspNet*.snupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Log
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Log.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Log - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Log.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Mvc.UI
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Mvc.UI.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Mvc.UI - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Mvc.UI.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Repository
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Repository.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Repository - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Repository.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Service
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Service.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Service - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Service.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.SMS
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.SMS.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.SMS - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.SMS.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Utility
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Utility.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Utility - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Utility.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.XncfBase
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.XncfBase.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.XncfBase - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.XncfBase.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.AreaBase
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.AreaBase.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.AreaBase - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.AreaBase.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.ChangeNamespace
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.ChangeNamespace.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.ChangeNamespace - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.ChangeNamespace.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.DynamicData
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.DynamicData.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.DynamicData - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.DynamicData.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.DatabaseToolkit
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.DatabaseToolkit.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.DatabaseToolkit - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.DatabaseToolkit.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.Swagger
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Swagger.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.Swagger - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Swagger.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.Terminal
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Terminal.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.Terminal - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Terminal.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.XncfBuilder
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.XncfBuilder.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.XncfBuilder - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.XncfBuilder.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database -v0
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.0.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database -v0 - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.0.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.DatabasePlant
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.DatabasePlant.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.DatabasePlant - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.DatabasePlant.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database.MySql
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.MySql.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database.MySql - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.MySql.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database.InMemory
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.InMemory.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database.InMemory - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.InMemory.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database.SqlServer
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.SqlServer.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database.SqlServer - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.SqlServer.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database.Sqlite
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.Sqlite.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database.Sqlite - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.Sqlite.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database.PostgreSQL
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.PostgreSQL.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database.PostgreSQL - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.PostgreSQL.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database.Oracle
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.Oracle.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database.Oracle - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.Oracle.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database.Dm
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.Dm.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.Database.Dm - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.Dm.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.XncfBuilder.Template
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.XncfBuilder.Template.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
# 系统模块 开始
- task: NuGetCommand@2
displayName: Senparc.Xncf.Menu
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Menu.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.XncfModuleManager
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.XncfModuleManager.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.SystemPermission
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.SystemPermission.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.SystemManager
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.SystemManager.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.SystemCore
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.SystemCore.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.AreasBase
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.AreasBase.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.Tenant.Interface
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Tenant.Interface.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.Tenant
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Tenant.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.PromptRange
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.PromptRange.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.PromptRange - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.PromptRange.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.XncfBuilder - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.XncfBuilder.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.Database -v0
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.Database.0.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.AIKernel
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.AIKernel.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.AIKernel - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.AIKernel.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.AgentsManager
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.AgentsManager.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.AgentsManager - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.AgentsManager.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Xncf.Dapr
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Dapr.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Xncf.Dapr - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Xncf.Dapr.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: Senparc.Ncf.UnitTestExtension
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.UnitTestExtension.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Ncf.UnitTestExtension - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Ncf.UnitTestExtension.*.snupkg;'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
arguments: '-skipDuplicate'
continueOnError: true
condition: succeededOrFailed()
# 系统模块 结束
- task: DotNetCoreCLI@2
displayName: Publish
inputs:
command: publish
publishWebProjects: True
arguments: '--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)'
zipAfterPublish: True
enabled: false
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
enabled: false
condition: succeededOrFailed()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。