Skip to content
Merged
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
2 changes: 1 addition & 1 deletion eng/helix/Helix.proj
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@

<!-- Additional package feeds -->
<ItemGroup>
<AdditionalDotNetPackageFeed Include="https://dotnetbuilds.blob.core.windows.net/internal"
<AdditionalDotNetPackageFeed Include="https://ci.dot.net/internal"
Condition="'$(SYSTEM_TEAMPROJECT)' == 'internal'">
<SasToken>$([System.Environment]::GetEnvironmentVariable('DotNetBuildsInternalContainerReadToken'))</SasToken>
</AdditionalDotNetPackageFeed>
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/jobs/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- _InternalInstallArgs: >-
-RuntimeSourceFeed https://dotnetbuilds.blob.core.windows.net/internal
-RuntimeSourceFeed https://ci.dot.net/internal
-RuntimeSourceFeedKey $(dotnetbuilds-internal-container-read-token-base64)

- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/jobs/pack-sign-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
/p:DotNetPublishUsingPipelines=true
/p:SkipPublishProjects=true
/p:ThirdPartyNoticesFilePath='$(Build.SourcesDirectory)/$(_TPNFile)'
/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
displayName: Pack, Sign, and Publish
# Intentionally copying file as "dotnet-monitor.nupkg.buildversion" for back compat
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/jobs/sign-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
/p:OfficialBuildId=$(BUILD.BUILDNUMBER)
/p:DotNetSignType=real
/p:SignAllBinaries=true
/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
displayName: Sign

Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/jobs/tpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- _InternalInstallArgs: ''
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- _InternalInstallArgs: >-
/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
/p:DotNetRuntimeSourceFeed=https://ci.dot.net/internal
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
steps:
- template: /eng/pipelines/steps/setup-nuget-sources.yml@self
Expand Down