From 7fd73e190ffa3f48e6eadecf5041184657aac365 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:16:54 -0700 Subject: [PATCH 01/25] fix indenting in Azure Pipeline - yaml... --- azure-pipelines.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1b7364c8..0b7681f4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -68,14 +68,14 @@ jobs: majorVersion: '$(Major)' minorVersion: '$(Minor)' patchVersion: '$(Patch)' - - task: NuGetAuthenticate@0 - displayName: 'NuGet Authenticate' - - task: NuGetCommand@2 - displayName: 'NuGet push' - inputs: - command: push - publishVstsFeed: 'PublicProject/DigitalRuby' - allowPackageConflicts: true + - task: NuGetAuthenticate@0 + displayName: 'NuGet Authenticate' + - task: NuGetCommand@2 + displayName: 'NuGet push' + inputs: + command: push + publishVstsFeed: 'PublicProject/DigitalRuby' + allowPackageConflicts: true - job: build_tag displayName: Build console app timeoutInMinutes: 5 From fc313f14936439eb8b2be8667909b1c0b1917f5b Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:24:33 -0700 Subject: [PATCH 02/25] update initial ubuntu to latest --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0b7681f4..5f6f7e08 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -42,7 +42,7 @@ jobs: timeoutInMinutes: 2 continueOnError: false pool: - vmImage: ubuntu-18.04 + vmImage: ubuntu-latest steps: - task: DotNetCoreCLI@2 displayName: 'Build lib+console' From 5f9716b75d8aa977cabc1f06b8f591ed1ce67272 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:34:14 -0700 Subject: [PATCH 03/25] update .net core version --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5f6f7e08..af02d746 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -44,6 +44,11 @@ jobs: pool: vmImage: ubuntu-latest steps: + - task: UseDotNet@2 + displayName: 'Install current .NET Core SDK' + inputs: + packageType: sdk + version: 6.x - task: DotNetCoreCLI@2 displayName: 'Build lib+console' inputs: From cb124c0af4a200f7b479bc4960d1ac237cf5fbbf Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:40:27 -0700 Subject: [PATCH 04/25] add restore step --- azure-pipelines.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index af02d746..8362d432 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -49,6 +49,10 @@ jobs: inputs: packageType: sdk version: 6.x + - task: DotNetCoreCLI@2 + displayName: 'Restore' + inputs: + command: 'restore' - task: DotNetCoreCLI@2 displayName: 'Build lib+console' inputs: From 7ae7c30c99baf40728c2d7a005bbf9c5668963e9 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:48:05 -0700 Subject: [PATCH 05/25] target just the main ES library --- azure-pipelines.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8362d432..6d4beaee 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -53,12 +53,13 @@ jobs: displayName: 'Restore' inputs: command: 'restore' - - task: DotNetCoreCLI@2 + projects: 'src/ExchangeSharp/ExchangeSharp.csproj' + - task: DotNetCoreCLI@2 displayName: 'Build lib+console' inputs: command: 'build' configuration: $(BuildConfiguration) - projects: 'src/ExchangeSharpConsole/ExchangeSharpConsole.csproj' + projects: 'src/ExchangeSharp/ExchangeSharp.csproj' #- task: DotNetCoreCLI@2 # displayName: 'Tests' # inputs: @@ -71,7 +72,7 @@ jobs: displayName: 'NuGet Pack' inputs: command: pack - packagesToPack: '**/*.csproj' + packagesToPack: 'src/ExchangeSharp/ExchangeSharp.csproj' packDestination: '$(Build.ArtifactStagingDirectory)' versioningScheme: byPrereleaseNumber majorVersion: '$(Major)' From 4ff1a222566508e0b6a0f27958bb67f062eef74b Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:52:17 -0700 Subject: [PATCH 06/25] fixed missing space in indent --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6d4beaee..b8794970 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -52,7 +52,7 @@ jobs: - task: DotNetCoreCLI@2 displayName: 'Restore' inputs: - command: 'restore' + command: 'restore' projects: 'src/ExchangeSharp/ExchangeSharp.csproj' - task: DotNetCoreCLI@2 displayName: 'Build lib+console' From c39f060c1235446f23ff79bd30a6163b99eff9a4 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:54:44 -0700 Subject: [PATCH 07/25] additional spaces --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b8794970..1916281a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -54,12 +54,12 @@ jobs: inputs: command: 'restore' projects: 'src/ExchangeSharp/ExchangeSharp.csproj' - - task: DotNetCoreCLI@2 - displayName: 'Build lib+console' - inputs: - command: 'build' - configuration: $(BuildConfiguration) - projects: 'src/ExchangeSharp/ExchangeSharp.csproj' + - task: DotNetCoreCLI@2 + displayName: 'Build lib+console' + inputs: + command: 'build' + configuration: $(BuildConfiguration) + projects: 'src/ExchangeSharp/ExchangeSharp.csproj' #- task: DotNetCoreCLI@2 # displayName: 'Tests' # inputs: From ef2ca41b457843cccce1138b98b3a858a2b574dd Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 16:56:47 -0700 Subject: [PATCH 08/25] finally valid yaml --- azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1916281a..e0611ab3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -55,11 +55,11 @@ jobs: command: 'restore' projects: 'src/ExchangeSharp/ExchangeSharp.csproj' - task: DotNetCoreCLI@2 - displayName: 'Build lib+console' - inputs: - command: 'build' - configuration: $(BuildConfiguration) - projects: 'src/ExchangeSharp/ExchangeSharp.csproj' + displayName: 'Build lib+console' + inputs: + command: 'build' + configuration: $(BuildConfiguration) + projects: 'src/ExchangeSharp/ExchangeSharp.csproj' #- task: DotNetCoreCLI@2 # displayName: 'Tests' # inputs: From 67b8c0a5a55e0666b5f32d30b4e4df802ba28198 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 17:35:54 -0700 Subject: [PATCH 09/25] change versioning scheme --- azure-pipelines.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e0611ab3..8f333184 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -74,10 +74,8 @@ jobs: command: pack packagesToPack: 'src/ExchangeSharp/ExchangeSharp.csproj' packDestination: '$(Build.ArtifactStagingDirectory)' - versioningScheme: byPrereleaseNumber - majorVersion: '$(Major)' - minorVersion: '$(Minor)' - patchVersion: '$(Patch)' + versioningScheme: byBuildNumber + name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr) - task: NuGetAuthenticate@0 displayName: 'NuGet Authenticate' - task: NuGetCommand@2 From ce000602842dcb5b85d778d443efb7581ec9e5ce Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 18:47:48 -0700 Subject: [PATCH 10/25] try version suffix argument --- azure-pipelines.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8f333184..92043852 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -60,6 +60,7 @@ jobs: command: 'build' configuration: $(BuildConfiguration) projects: 'src/ExchangeSharp/ExchangeSharp.csproj' + arguments: '--version-suffix prerelease-$(date +%Y%m%d%H%M%S)' #- task: DotNetCoreCLI@2 # displayName: 'Tests' # inputs: @@ -68,14 +69,14 @@ jobs: # projects: 'tests/*/*.csproj' # publishTestResults: true # testRunTitle: 'All tests' - - task: DotNetCoreCLI@2 - displayName: 'NuGet Pack' - inputs: - command: pack - packagesToPack: 'src/ExchangeSharp/ExchangeSharp.csproj' - packDestination: '$(Build.ArtifactStagingDirectory)' - versioningScheme: byBuildNumber - name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr) + #- task: DotNetCoreCLI@2 + # displayName: 'NuGet Pack' + # inputs: + # command: pack + # packagesToPack: 'src/ExchangeSharp/ExchangeSharp.csproj' + # packDestination: '$(Build.ArtifactStagingDirectory)' + # versioningScheme: byBuildNumber + # name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr) - task: NuGetAuthenticate@0 displayName: 'NuGet Authenticate' - task: NuGetCommand@2 From 2a761e1117982b96ddc028d7b26a48501714d44f Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 18:51:51 -0700 Subject: [PATCH 11/25] correct date expression - Azure, not GH --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 92043852..f48512ad 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -60,7 +60,7 @@ jobs: command: 'build' configuration: $(BuildConfiguration) projects: 'src/ExchangeSharp/ExchangeSharp.csproj' - arguments: '--version-suffix prerelease-$(date +%Y%m%d%H%M%S)' + arguments: '--version-suffix prerelease-$(Date:yyyyMMddHHmmss)' #- task: DotNetCoreCLI@2 # displayName: 'Tests' # inputs: From 0bb94cbfb43ac9dda1b30e1974a9ea9c8a5f1ab3 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 18:55:17 -0700 Subject: [PATCH 12/25] add back pack w/o versioning --- azure-pipelines.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f48512ad..7d39ae39 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -69,14 +69,13 @@ jobs: # projects: 'tests/*/*.csproj' # publishTestResults: true # testRunTitle: 'All tests' - #- task: DotNetCoreCLI@2 - # displayName: 'NuGet Pack' - # inputs: - # command: pack - # packagesToPack: 'src/ExchangeSharp/ExchangeSharp.csproj' - # packDestination: '$(Build.ArtifactStagingDirectory)' - # versioningScheme: byBuildNumber - # name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr) + - task: DotNetCoreCLI@2 + displayName: 'NuGet Pack' + inputs: + command: pack + packagesToPack: 'src/ExchangeSharp/ExchangeSharp.csproj' + packDestination: '$(Build.ArtifactStagingDirectory)' + versioningScheme: off - task: NuGetAuthenticate@0 displayName: 'NuGet Authenticate' - task: NuGetCommand@2 From 4eb9735c646378f8bfc8bc56ce8c944410a444b1 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 19:12:58 -0700 Subject: [PATCH 13/25] try without version-suffix --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7d39ae39..e972fa79 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -60,7 +60,7 @@ jobs: command: 'build' configuration: $(BuildConfiguration) projects: 'src/ExchangeSharp/ExchangeSharp.csproj' - arguments: '--version-suffix prerelease-$(Date:yyyyMMddHHmmss)' + #arguments: '--version-suffix prerelease-$(Date:yyyyMMddHHmmss)' #- task: DotNetCoreCLI@2 # displayName: 'Tests' # inputs: From b58934d92cf0b45cbdb2cb52a85665b99b29a6f2 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 19:20:06 -0700 Subject: [PATCH 14/25] pass configuration via argument, and add back version-suffix --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e972fa79..b2938285 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -58,9 +58,8 @@ jobs: displayName: 'Build lib+console' inputs: command: 'build' - configuration: $(BuildConfiguration) projects: 'src/ExchangeSharp/ExchangeSharp.csproj' - #arguments: '--version-suffix prerelease-$(Date:yyyyMMddHHmmss)' + arguments: '--configuration $(BuildConfiguration) --version-suffix prerelease-$(Date:yyyyMMddHHmmss)' #- task: DotNetCoreCLI@2 # displayName: 'Tests' # inputs: From b8c0b642e134f6f07cc93b1cf285f22d27e4af92 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 19:23:06 -0700 Subject: [PATCH 15/25] change project name to DigitalRuby --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b2938285..40d1d048 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -81,7 +81,7 @@ jobs: displayName: 'NuGet push' inputs: command: push - publishVstsFeed: 'PublicProject/DigitalRuby' + publishVstsFeed: 'DigitalRuby/DigitalRuby' allowPackageConflicts: true - job: build_tag displayName: Build console app From f3db5fc518180686134c6a62820278b222ec7d6c Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 20:52:49 -0700 Subject: [PATCH 16/25] add internal nuGetFeedType --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 40d1d048..e3bc6728 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -81,8 +81,8 @@ jobs: displayName: 'NuGet push' inputs: command: push + nuGetFeedType: 'internal' publishVstsFeed: 'DigitalRuby/DigitalRuby' - allowPackageConflicts: true - job: build_tag displayName: Build console app timeoutInMinutes: 5 From 736a74f1f8f0419dbf702d9118495c5cbf1ce3d7 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 21:12:29 -0700 Subject: [PATCH 17/25] try w/o project name --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e3bc6728..2544a9d7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -82,7 +82,7 @@ jobs: inputs: command: push nuGetFeedType: 'internal' - publishVstsFeed: 'DigitalRuby/DigitalRuby' + publishVstsFeed: 'DigitalRuby' - job: build_tag displayName: Build console app timeoutInMinutes: 5 From 4b55ba7745cb8f23942179632c2cd525012e66cb Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Fri, 6 May 2022 21:15:06 -0700 Subject: [PATCH 18/25] try external --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2544a9d7..adafad76 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -81,8 +81,8 @@ jobs: displayName: 'NuGet push' inputs: command: push - nuGetFeedType: 'internal' - publishVstsFeed: 'DigitalRuby' + nuGetFeedType: 'external' + publishVstsFeed: 'DigitalRuby/DigitalRuby' - job: build_tag displayName: Build console app timeoutInMinutes: 5 From 5b700113a92ff3205bfc72c44268ffc5f64f5bf6 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Sat, 7 May 2022 18:58:51 -0700 Subject: [PATCH 19/25] try manual nuget script --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index adafad76..f80d43d7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -77,12 +77,12 @@ jobs: versioningScheme: off - task: NuGetAuthenticate@0 displayName: 'NuGet Authenticate' - - task: NuGetCommand@2 - displayName: 'NuGet push' - inputs: - command: push - nuGetFeedType: 'external' - publishVstsFeed: 'DigitalRuby/DigitalRuby' + - script: nuget push $(Build.ArtifactStagingDirectory)/*.nupkg -NonInteractive -Source https://pkgs.dev.azure.com/DigitalRuby/DigitalRuby/_packaging/DigitalRuby/nuget/v3/index.json -ApiKey AzureArtifacts -Verbosity Detailed + #- task: NuGetCommand@2 + # displayName: 'NuGet push' + # inputs: + # command: push + # publishVstsFeed: 'DigitalRuby/DigitalRuby' - job: build_tag displayName: Build console app timeoutInMinutes: 5 From 8a4e0e5fca47f785d16cc91a9e447d8301abbd1e Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Sat, 7 May 2022 19:44:46 -0700 Subject: [PATCH 20/25] try w/o nuget.config --- azure-pipelines.yml | 12 ++++++------ src/ExchangeSharp/nuget.config | 9 --------- 2 files changed, 6 insertions(+), 15 deletions(-) delete mode 100644 src/ExchangeSharp/nuget.config diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f80d43d7..992bea6e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -77,12 +77,12 @@ jobs: versioningScheme: off - task: NuGetAuthenticate@0 displayName: 'NuGet Authenticate' - - script: nuget push $(Build.ArtifactStagingDirectory)/*.nupkg -NonInteractive -Source https://pkgs.dev.azure.com/DigitalRuby/DigitalRuby/_packaging/DigitalRuby/nuget/v3/index.json -ApiKey AzureArtifacts -Verbosity Detailed - #- task: NuGetCommand@2 - # displayName: 'NuGet push' - # inputs: - # command: push - # publishVstsFeed: 'DigitalRuby/DigitalRuby' + #- script: nuget push $(Build.ArtifactStagingDirectory)/*.nupkg -NonInteractive -Source https://pkgs.dev.azure.com/DigitalRuby/DigitalRuby/_packaging/DigitalRuby/nuget/v3/index.json -ApiKey AzureArtifacts -Verbosity Detailed + - task: NuGetCommand@2 + displayName: 'NuGet push' + inputs: + command: push + publishVstsFeed: 'DigitalRuby/DigitalRuby' - job: build_tag displayName: Build console app timeoutInMinutes: 5 diff --git a/src/ExchangeSharp/nuget.config b/src/ExchangeSharp/nuget.config deleted file mode 100644 index 3abe0eb1..00000000 --- a/src/ExchangeSharp/nuget.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file From 102a17f673f92fa171fe37cd34e07d833c43e25a Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Sat, 7 May 2022 19:52:36 -0700 Subject: [PATCH 21/25] try testfeed --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 992bea6e..848cc591 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -82,7 +82,7 @@ jobs: displayName: 'NuGet push' inputs: command: push - publishVstsFeed: 'DigitalRuby/DigitalRuby' + publishVstsFeed: 'DigitalRuby/testfeed' - job: build_tag displayName: Build console app timeoutInMinutes: 5 From e85ea48a69c5a3b3a14f99fb84e7f43e7795599b Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Sat, 7 May 2022 20:21:48 -0700 Subject: [PATCH 22/25] try installing nuget --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 848cc591..ec2fc9e3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -75,6 +75,7 @@ jobs: packagesToPack: 'src/ExchangeSharp/ExchangeSharp.csproj' packDestination: '$(Build.ArtifactStagingDirectory)' versioningScheme: off + - task: NuGetToolInstaller@1 - task: NuGetAuthenticate@0 displayName: 'NuGet Authenticate' #- script: nuget push $(Build.ArtifactStagingDirectory)/*.nupkg -NonInteractive -Source https://pkgs.dev.azure.com/DigitalRuby/DigitalRuby/_packaging/DigitalRuby/nuget/v3/index.json -ApiKey AzureArtifacts -Verbosity Detailed From 1396d82bdacf833aa236581c11099ed184f3899a Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Sat, 7 May 2022 20:32:30 -0700 Subject: [PATCH 23/25] try unquoted --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ec2fc9e3..3328da28 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -83,7 +83,8 @@ jobs: displayName: 'NuGet push' inputs: command: push - publishVstsFeed: 'DigitalRuby/testfeed' + vstsFeed: DigitalRuby/testfeed + publishVstsFeed: DigitalRuby/testfeed - job: build_tag displayName: Build console app timeoutInMinutes: 5 From 0a6968632d6f7ad5e2b605dc9640c161be82f2e1 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Mon, 9 May 2022 15:11:10 -0700 Subject: [PATCH 24/25] try switching back to DR feed --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3328da28..4208ea33 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -83,8 +83,7 @@ jobs: displayName: 'NuGet push' inputs: command: push - vstsFeed: DigitalRuby/testfeed - publishVstsFeed: DigitalRuby/testfeed + publishVstsFeed: DigitalRuby/DigitalRuby - job: build_tag displayName: Build console app timeoutInMinutes: 5 From 30f2d15770426215e215f1b4bff9f63016682aa8 Mon Sep 17 00:00:00 2001 From: Victor Lee Date: Mon, 9 May 2022 15:22:57 -0700 Subject: [PATCH 25/25] try with DigitalRubyFeed --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4208ea33..6adf2217 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -83,7 +83,7 @@ jobs: displayName: 'NuGet push' inputs: command: push - publishVstsFeed: DigitalRuby/DigitalRuby + publishVstsFeed: DigitalRuby/DigitalRubyFeed - job: build_tag displayName: Build console app timeoutInMinutes: 5