Skip to content

Commit 3b59970

Browse files
authored
Merge pull request #563 from microsoft/nugetSource
Consume dependencies from publicly available feeds
2 parents ab16653 + d74d85f commit 3b59970

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Diff for: .github/renovate.json

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
"matchUpdateTypes": ["patch"],
4949
"enabled": false
5050
},
51+
{
52+
"matchPackageNames": ["MessagePack", "MessagePackAnalyzer"],
53+
"allowedVersions": "<3.0",
54+
"groupName": "MessagePack"
55+
},
5156
{
5257
"matchFileNames": ["Directory.Packages.Analyzers.props"],
5358
"enabled": false

Diff for: azure-pipelines/install-dependencies.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ steps:
1111
- template: WIFtoPATauth.yml
1212
parameters:
1313
wifServiceConnectionName: azure-public/vside package pull
14-
deadPATServiceConnectionId: 0ae39abc-4d06-4436-a7b5-865833df49db # azure-public/msft_consumption
14+
deadPATServiceConnectionId: 46f0d4d4-9fff-4c58-a1ab-3b8f97e3b78a # azure-public/msft_consumption_public
1515

1616
- task: NuGetAuthenticate@1
1717
displayName: 🔏 Authenticate NuGet feeds
1818
inputs:
1919
${{ if and(parameters.needsAzurePublicFeeds, eq(variables['system.collectionId'], '011b8bdf-6d56-4f87-be0d-0092136884d9')) }}:
20-
nuGetServiceConnections: azure-public/msft_consumption
20+
nuGetServiceConnections: azure-public/msft_consumption_public
2121

2222
- powershell: |
2323
$AccessToken = '$(System.AccessToken)' # Avoid specifying the access token directly on the init.ps1 command line to avoid it showing up in errors

Diff for: nuget.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</config>
66
<packageSources>
77
<clear />
8-
<add key="msft_consumption" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json" />
8+
<add key="msft_consumption_public" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption_public/nuget/v3/index.json" />
99
</packageSources>
1010
<disabledPackageSources>
1111
<!-- Defend against user or machine level disabling of sources that we list in this file. -->

0 commit comments

Comments
 (0)