Skip to content

Commit ac25bc7

Browse files
authored
Merge branch 'main' into wtgodbe/Wix5
2 parents 416fced + 963ca78 commit ac25bc7

File tree

331 files changed

+8585
-1721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+8585
-1721
lines changed

.azure/pipelines/ci-public.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ variables:
7676
value: /bl:artifacts/log/Release/Build.CodeSign.binlog
7777
- name: WindowsInstallersLogArgs
7878
value: /bl:artifacts/log/Release/Build.Installers.binlog
79-
- name: WindowsArm64InstallersLogArgs
80-
value: /bl:artifacts/log/Release/Build.Installers.Arm64.binlog
8179
- name: _SignType
8280
value: ''
8381
- name: _InternalRuntimeDownloadArgs
@@ -205,29 +203,14 @@ stages:
205203
-sign
206204
-buildInstallers
207205
-noBuildNative
208-
/p:DotNetSignType=$(_SignType)
209-
$(_BuildArgs)
210-
$(_InternalRuntimeDownloadArgs)
211-
$(WindowsInstallersLogArgs)
212-
displayName: Build Installers
213-
214-
# Windows installers bundle and sharedfx msi for arm64
215-
- script: ./eng/build.cmd
216-
-ci
217-
-prepareMachine
218-
-noBuildRepoTasks
219-
-arch arm64
220-
-sign
221-
-buildInstallers
222-
-noBuildNative
223206
-publish
224207
/p:DotNetSignType=$(_SignType)
225208
/p:AssetManifestFileName=aspnetcore-win.xml
226209
$(_BuildArgs)
227210
$(_PublishArgs)
228211
$(_InternalRuntimeDownloadArgs)
229-
$(WindowsArm64InstallersLogArgs)
230-
displayName: Build ARM64 Installers
212+
$(WindowsInstallersLogArgs)
213+
displayName: Build Installers
231214

232215
artifacts:
233216
- name: Windows_Logs_Attempt_$(System.JobAttempt)

.azure/pipelines/ci.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ variables:
7878
value: /bl:artifacts/log/Release/Build.CodeSign.binlog
7979
- name: WindowsInstallersLogArgs
8080
value: /bl:artifacts/log/Release/Build.Installers.binlog
81-
- name: WindowsArm64InstallersLogArgs
82-
value: /bl:artifacts/log/Release/Build.Installers.Arm64.binlog
8381
- name: _InternalRuntimeDownloadArgs
8482
value: -RuntimeSourceFeed https://ci.dot.net/internal
8583
-RuntimeSourceFeedKey $(dotnetbuilds-internal-container-read-token-base64)
@@ -255,33 +253,16 @@ extends:
255253
-sign
256254
-buildInstallers
257255
-noBuildNative
258-
/p:DotNetSignType=$(_SignType)
259-
$(_BuildArgs)
260-
$(_InternalRuntimeDownloadArgs)
261-
$(WindowsInstallersLogArgs)
262-
env:
263-
MSBUILDUSESERVER: "1"
264-
displayName: Build Installers
265-
266-
# Windows installers bundle and sharedfx msi for arm64
267-
- script: ./eng/build.cmd
268-
-ci
269-
-prepareMachine
270-
-noBuildRepoTasks
271-
-arch arm64
272-
-sign
273-
-buildInstallers
274-
-noBuildNative
275256
-publish
276257
/p:DotNetSignType=$(_SignType)
277258
/p:AssetManifestFileName=aspnetcore-win.xml
278259
$(_BuildArgs)
279260
$(_PublishArgs)
280261
$(_InternalRuntimeDownloadArgs)
281-
$(WindowsArm64InstallersLogArgs)
262+
$(WindowsInstallersLogArgs)
282263
env:
283264
MSBUILDUSESERVER: "1"
284-
displayName: Build ARM64 Installers
265+
displayName: Build Installers
285266

286267
artifacts:
287268
- name: Windows_Logs_Attempt_$(System.JobAttempt)

.azure/pipelines/components-e2e-tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,13 @@ jobs:
9898
exit 1
9999
fi
100100
displayName: Run E2E tests
101-
env:
102-
DOTNET_EnableAVX512: 0
103101
- script: .dotnet/dotnet test ./src/Components/test/E2ETest -c $(BuildConfiguration) --no-build --filter 'Quarantined=true' -p:RunQuarantinedTests=true
104102
-p:VsTestUseMSBuildOutput=false
105103
--logger:"trx%3BLogFileName=Microsoft.AspNetCore.Components.E2ETests.trx"
106104
--logger:"html%3BLogFileName=Microsoft.AspNetCore.Components.E2ETests.html"
107105
--results-directory $(Build.SourcesDirectory)/artifacts/TestResults/$(BuildConfiguration)/Quarantined
108106
displayName: Run Quarantined E2E tests
109107
continueOnError: true
110-
env:
111-
DOTNET_EnableAVX512: 0
112108
- task: PublishTestResults@2
113109
displayName: Publish E2E Test Results
114110
inputs:

.azuredevops/pull_request_template/branches/internal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Fixes #{bug number} (in this specific format)
4040

4141
----
4242

43-
## When servicing release/2.1
43+
## When servicing release/2.3
4444

4545
- [ ] Make necessary changes in eng/PatchConfig.props

.azuredevops/pull_request_template/branches/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ Fixes #{bug number} (in this specific format)
4646

4747
----
4848

49-
## When servicing release/2.1
49+
## When servicing release/2.3
5050

5151
- [ ] Make necessary changes in eng/PatchConfig.props

.github/PULL_REQUEST_TEMPLATE/servicing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Fixes #{bug number} (in this specific format)
4040

4141
----
4242

43-
## When servicing release/2.1
43+
## When servicing release/2.3
4444

4545
- [ ] Make necessary changes in eng/PatchConfig.props

.github/policies/resourceManagement.yml

Lines changed: 36 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -441,19 +441,30 @@ configuration:
441441
branch: main
442442
then:
443443
- addMilestone:
444-
milestone: 10.0-rc1
444+
milestone: 11.0-preview1
445445
description: '[Milestone Assignments] Assign Milestone to PRs merged to the `main` branch'
446446
- if:
447447
- payloadType: Pull_Request
448448
- isAction:
449449
action: Closed
450450
- targetsBranch:
451-
branch: release/10.0-preview7
451+
branch: release/10.0-rc1
452452
then:
453453
- removeMilestone
454454
- addMilestone:
455-
milestone: 10.0-preview7
456-
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0-preview1 branch'
455+
milestone: 10.0-rc1
456+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0-rc1 branch'
457+
- if:
458+
- payloadType: Pull_Request
459+
- isAction:
460+
action: Closed
461+
- targetsBranch:
462+
branch: release/10.0
463+
then:
464+
- removeMilestone
465+
- addMilestone:
466+
milestone: 10.0-rc2
467+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0 branch'
457468
- if:
458469
- payloadType: Issues
459470
- isAction:
@@ -566,6 +577,25 @@ configuration:
566577
567578
Otherwise, please add `tell-mode` label.
568579
description: Add release/2.3 targeting PRs to the servicing project
580+
- if:
581+
- payloadType: Pull_Request
582+
- isAction:
583+
action: Opened
584+
- targetsBranch:
585+
branch: release/10.0
586+
- activitySenderHasPermission:
587+
permission: Read
588+
- not:
589+
isActivitySender:
590+
user: dotnet-maestro
591+
issueAuthor: False
592+
- not:
593+
isActivitySender:
594+
user: dotnet-maestro-bot
595+
issueAuthor: False
596+
then:
597+
- addLabel:
598+
label: servicing-consider
569599
- if:
570600
- payloadType: Pull_Request
571601
- labelAdded:
@@ -743,3 +773,5 @@ configuration:
743773
onFailure:
744774
onSuccess:
745775

776+
777+

.github/workflows/backport.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
backport:
17-
uses: dotnet/arcade/.github/workflows/backport-base.yml@7c0434b26153965459a8d7968f18cf7c0a2cf463 # 2025-01-13
17+
uses: dotnet/arcade/.github/workflows/backport-base.yml@f2cdf946c00a12a2c283835bb41ddc2255832055 # 2025-01-13
1818
with:
1919
pr_description_template: |
2020
Backport of #%source_pr_number% to %target_branch%
@@ -63,6 +63,6 @@ jobs:
6363
6464
----
6565
66-
## When servicing release/2.1
66+
## When servicing release/2.3
6767
6868
- [ ] Make necessary changes in eng/PatchConfig.props

.github/workflows/browsertesting-open-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
issues: write
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
# copilot can be assigned to the issue
2020
# https://cli.github.com/manual/gh_issue_create

.github/workflows/copilot-setup-steps.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,30 @@ jobs:
1414
# You can define any steps you want, and they will run before the agent starts.
1515
# If you do not check out your code, Copilot will do this for you.
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
1818

19-
# Include PrepareForHelix to maximise what is downloaded here
19+
# Include PrepareForHelix to maximise what is downloaded here
2020
- name: Build solution
2121
env:
2222
# prevent GitInfo errors
2323
CI: false
2424
run: ./restore.sh
25+
26+
# For MCP servers like nuget's
27+
- name: Install .NET 10.x
28+
uses: actions/setup-dotnet@v4
29+
with:
30+
dotnet-version: |
31+
10.x
32+
dotnet-quality: preview
33+
34+
# for MCP servers
35+
- name: Install .NET 8.x
36+
uses: actions/setup-dotnet@v4
37+
with:
38+
dotnet-version: |
39+
8.x
40+
41+
# Diagnostics in the log
42+
- name: dotnet --info
43+
run: dotnet --info

0 commit comments

Comments
 (0)