Skip to content

Commit 11d50b0

Browse files
committed
Add a NuGet.config file to the BinaryModule mock
So that Cloud Feed Services is happy.
1 parent 40e0ce3 commit 11d50b0

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/ci-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
if: always()
8181
with:
8282
name: vscode-powershell-vsix-${{ matrix.os }}
83-
path: vscode-powershell/powershell-*.vsix
83+
path: '**/*.vsix'
8484

8585
- name: Upload test results
8686
uses: actions/upload-artifact@v4

.pipelines/vscode-powershell-Official.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ extends:
211211
- download: current
212212
displayName: Download artifacts
213213
- task: npmAuthenticate@0
214-
displayName: Install NPM packages (for vsce)
214+
displayName: Authenticate NPM with Azure Artifacts (for vsce)
215215
inputs:
216216
workingFile: .npmrc
217217
- pwsh: npm ci

test/mocks/BinaryModule/NuGet.Config

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear />
5+
<add key="PowerShellCore_PublicPackages" value="https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/nuget/v3/index.json" />
6+
</packageSources>
7+
</configuration>

0 commit comments

Comments
 (0)