Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<!-- dotnet-public mirrors nuget.org and is accessible from 1ES network-isolated agents -->
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" protocolVersion="3" />
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" protocolVersion="3" />
<add key="dotnet10" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" />
Comment thread
jfversluis marked this conversation as resolved.
Outdated
</packageSources>
</configuration>
6 changes: 6 additions & 0 deletions eng/pipelines/templates/build-test-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
inputs:
useGlobalJson: true

- task: NuGetAuthenticate@1
displayName: Authenticate NuGet feeds

- script: dotnet workload install maui macos
displayName: Install MAUI workloads

Expand Down Expand Up @@ -78,6 +81,9 @@ jobs:
inputs:
useGlobalJson: true

- task: NuGetAuthenticate@1
displayName: Authenticate NuGet feeds

- script: dotnet workload install maui macos
displayName: Install MAUI workloads

Expand Down
Loading