Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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: 2 additions & 3 deletions NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Microsoft.Azure.Functions.PowerShellWorker" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/Microsoft.Azure.Functions.PowerShellWorker/nuget/v3/index.json" />
<add key="AzureFunctions" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctions/nuget/v3/index.json" />
<add key="AzureFunctionsRelease" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsRelease/nuget/v3/index.json" />
<add key="AzureFunctionsPreRelease" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsPreRelease/nuget/v3/index.json" />
<add key="AzureFunctionsTempStaging" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsTempStaging/nuget/v3/index.json" />
<add key="DotnetLibraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
<add key="Microsoft.Azure.Functions.PowerShellWorker" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/Microsoft.Azure.Functions.PowerShellWorker/nuget/v3/index.json" />
<add key="Infra" value="https://pkgs.dev.azure.com/azfunc/public/_packaging/infra/nuget/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
2 changes: 2 additions & 0 deletions eng/ci/abstractions-official-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ extends:
compiled:
enabled: true
runSourceLanguagesInSourceAnalysis: true
settings:
networkIsolationPolicy: Preferred, GitHub, NuGet
stages:
- stage: Build
displayName: 'Build & Test'
Expand Down
1 change: 1 addition & 0 deletions eng/ci/abstractions-public-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ extends:
enabled: true
runSourceLanguagesInSourceAnalysis: true
settings:
networkIsolationPolicy: Preferred, GitHub, NuGet
skipBuildTagsForGitHubPullRequests: ${{ variables['System.PullRequest.IsFork'] }}

stages:
Expand Down
2 changes: 2 additions & 0 deletions eng/ci/cli-official-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ extends:
compiled:
enabled: true
runSourceLanguagesInSourceAnalysis: true
settings:
networkIsolationPolicy: Preferred, GitHub, NuGet
stages:
- stage: Test
displayName: 'Build & Test'
Expand Down
1 change: 1 addition & 0 deletions eng/ci/cli-public-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ extends:
enabled: true
runSourceLanguagesInSourceAnalysis: true
settings:
networkIsolationPolicy: Preferred, GitHub, NuGet
skipBuildTagsForGitHubPullRequests: ${{ variables['System.PullRequest.IsFork'] }}

stages:
Expand Down
3 changes: 3 additions & 0 deletions eng/ci/templates/steps/restore-nuget.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
steps:
- task: NuGetAuthenticate@1
displayName: 'Authenticate NuGet feeds'

- task: DotNetCoreCLI@2
displayName: 'Restore NuGet packages'
inputs:
Expand Down
Loading