Skip to content

Commit 3e265f8

Browse files
committed
Merged PR 46719: Updating dependencies for 9.1 release
Updating dependencies for 9.1 release ---- #### AI description (iteration 1) #### PR Classification Dependency update for the 9.1 release. #### PR Summary This pull request updates various dependencies to their 9.0.1 versions and makes adjustments to the build and pipeline configurations. - `eng/Version.Details.xml` and `eng/Versions.props`: Updated multiple dependencies from version 9.0.0 to 9.0.1. - `azure-pipelines.yml`: Removed the code coverage stage and disabled source indexing. - `NuGet.config`: Adjusted package source mappings and disabled certain package sources. - `eng/pipelines/templates/BuildAndTest.yml`: Added steps to set up private feed credentials. - `Directory.Build.props`: Disabled NU1507 warning for internal branches.
1 parent 045aaab commit 3e265f8

6 files changed

+216
-227
lines changed

Directory.Build.props

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
<TestNetCoreTargetFrameworks>$(NetCoreTargetFrameworks)</TestNetCoreTargetFrameworks>
3535
</PropertyGroup>
3636

37+
<!-- Internal branches don't use package source mapping feature due to internal feeds, so disable NU1507 warning saying it should be used. -->
38+
<PropertyGroup>
39+
<NoWarn>$(NoWarn);NU1507</NoWarn>
40+
</PropertyGroup>
41+
3742
<PropertyGroup>
3843
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
3944
<LangVersion>latest</LangVersion>

NuGet.config

+32-23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
<configuration>
33
<packageSources>
44
<clear />
5+
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
6+
<!-- Begin: Package sources from dotnet-aspnetcore -->
7+
<add key="darc-int-dotnet-aspnetcore-31d685b" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-31d685b2/nuget/v3/index.json" />
8+
<add key="darc-int-dotnet-aspnetcore-31d685b-3" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-31d685b2-3/nuget/v3/index.json" />
9+
<add key="darc-int-dotnet-aspnetcore-31d685b-2" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-31d685b2-2/nuget/v3/index.json" />
10+
<add key="darc-int-dotnet-aspnetcore-31d685b-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-31d685b2-1/nuget/v3/index.json" />
11+
<add key="darc-int-dotnet-aspnetcore-4e4e1fc" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-4e4e1fc3/nuget/v3/index.json" />
12+
<add key="darc-int-dotnet-aspnetcore-4e4e1fc-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-4e4e1fc3-1/nuget/v3/index.json" />
13+
<!-- End: Package sources from dotnet-aspnetcore -->
14+
<!-- Begin: Package sources from dotnet-runtime -->
15+
<add key="darc-int-dotnet-runtime-89ef51c" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-runtime-89ef51c5/nuget/v3/index.json" />
16+
<add key="darc-int-dotnet-runtime-89ef51c-3" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-runtime-89ef51c5-3/nuget/v3/index.json" />
17+
<add key="darc-int-dotnet-runtime-69ae1ac" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-runtime-69ae1ac0/nuget/v3/index.json" />
18+
<!-- End: Package sources from dotnet-runtime -->
19+
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
520
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
621
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
722
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
@@ -10,27 +25,21 @@
1025
<!-- Used for the Rich Navigation indexing task -->
1126
<add key="richnav" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-buildservices/nuget/v3/index.json" />
1227
</packageSources>
13-
<!-- Define mappings by adding package patterns beneath the target source.
14-
https://aka.ms/nuget-package-source-mapping -->
15-
<packageSourceMapping>
16-
<packageSource key="dotnet-public">
17-
<package pattern="*" />
18-
</packageSource>
19-
<packageSource key="dotnet-eng">
20-
<package pattern="*" />
21-
</packageSource>
22-
<packageSource key="dotnet-tools">
23-
<package pattern="*" />
24-
</packageSource>
25-
<packageSource key="dotnet9">
26-
<package pattern="*" />
27-
</packageSource>
28-
<packageSource key="dotnet9-transport">
29-
<package pattern="*" />
30-
</packageSource>
31-
<packageSource key="richnav">
32-
<package pattern="*" />
33-
</packageSource>
34-
</packageSourceMapping>
35-
<disabledPackageSources />
28+
<disabledPackageSources>
29+
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
30+
<!-- Begin: Package sources from dotnet-aspnetcore -->
31+
<!-- Begin: Package sources from dotnet-runtime -->
32+
<add key="darc-int-dotnet-runtime-89ef51c-3" value="true" />
33+
<add key="darc-int-dotnet-runtime-89ef51c" value="true" />
34+
<add key="darc-int-dotnet-runtime-69ae1ac" value="true" />
35+
<!-- End: Package sources from dotnet-runtime -->
36+
<add key="darc-int-dotnet-aspnetcore-31d685b-1" value="true" />
37+
<add key="darc-int-dotnet-aspnetcore-31d685b-2" value="true" />
38+
<add key="darc-int-dotnet-aspnetcore-31d685b-3" value="true" />
39+
<add key="darc-int-dotnet-aspnetcore-31d685b" value="true" />
40+
<add key="darc-int-dotnet-aspnetcore-4e4e1fc-1" value="true" />
41+
<add key="darc-int-dotnet-aspnetcore-4e4e1fc" value="true" />
42+
<!-- End: Package sources from dotnet-aspnetcore -->
43+
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
44+
</disabledPackageSources>
3645
</configuration>

azure-pipelines.yml

+1-47
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ extends:
143143
parameters:
144144
enableMicrobuild: true
145145
enableTelemetry: true
146-
enableSourceIndex: true
146+
enableSourceIndex: false
147147
runAsPublic: ${{ variables['runAsPublic'] }}
148148
# Publish build logs
149149
enablePublishBuildArtifacts: true
@@ -220,51 +220,6 @@ extends:
220220
isWindows: false
221221
warnAsError: 0
222222

223-
# ----------------------------------------------------------------
224-
# This stage performs quality gates enforcements
225-
# ----------------------------------------------------------------
226-
- stage: codecoverage
227-
displayName: CodeCoverage
228-
dependsOn:
229-
- build
230-
condition: and(succeeded('build'), ne(variables['SkipQualityGates'], 'true'))
231-
variables:
232-
- template: /eng/common/templates-official/variables/pool-providers.yml@self
233-
jobs:
234-
- template: /eng/common/templates-official/jobs/jobs.yml@self
235-
parameters:
236-
enableMicrobuild: true
237-
enableTelemetry: true
238-
runAsPublic: ${{ variables['runAsPublic'] }}
239-
workspace:
240-
clean: all
241-
242-
# ----------------------------------------------------------------
243-
# This stage downloads the code coverage reports from the build jobs,
244-
# merges those and validates the combined test coverage.
245-
# ----------------------------------------------------------------
246-
jobs:
247-
- job: CodeCoverageReport
248-
timeoutInMinutes: 180
249-
250-
pool:
251-
name: NetCore1ESPool-Internal
252-
image: 1es-mariner-2
253-
os: linux
254-
255-
preSteps:
256-
- checkout: self
257-
clean: true
258-
persistCredentials: true
259-
fetchDepth: 1
260-
261-
steps:
262-
- script: $(Build.SourcesDirectory)/build.sh --ci --restore
263-
displayName: Init toolset
264-
265-
- template: /eng/pipelines/templates/VerifyCoverageReport.yml
266-
267-
268223
# ----------------------------------------------------------------
269224
# This stage only performs a build treating warnings as errors
270225
# to detect any kind of code style violations
@@ -320,7 +275,6 @@ extends:
320275
parameters:
321276
validateDependsOn:
322277
- build
323-
- codecoverage
324278
- correctness
325279
publishingInfraVersion: 3
326280
enableSymbolValidation: false

0 commit comments

Comments
 (0)