Skip to content

Commit ee9ffab

Browse files
authored
Misc updates to .NET 8 -> .NET 11. (#23866)
Also run yamllint on some yaml files.
1 parent bc660ce commit ee9ffab

File tree

9 files changed

+29
-20
lines changed

9 files changed

+29
-20
lines changed

.azuredevops/policies/branchClassification.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ configuration:
1515
- net8.0
1616
- net9.0
1717
- net10.0
18+
- net11.0
1819
- xcode*
1920
classification: production

.github/ISSUE_TEMPLATE/01-building-an-application.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ body:
2323
description: In what target framework(s) do you see this issue?
2424
multiple: true
2525
options:
26-
- net8.0-*
27-
- net9.0-*
28-
- net10.0-*
29-
- Other
26+
- net8.0-* [unsupported, please update to .NET 9+]
27+
- net9.0-*
28+
- net10.0-*
29+
- net11.0-*
30+
- Other
3031
validations:
3132
required: true
3233
- type: input

.github/ISSUE_TEMPLATE/02-running-an-application.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ body:
2323
description: In what target framework(s) do you see this issue?
2424
multiple: true
2525
options:
26-
- net8.0-*
27-
- net9.0-*
28-
- net10.0-*
29-
- Other
26+
- net8.0-* [unsupported, please update to .NET 9+]
27+
- net9.0-*
28+
- net10.0-*
29+
- net11.0-*
30+
- Other
3031
validations:
3132
required: true
3233
- type: input

.github/ISSUE_TEMPLATE/03-api.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,11 @@ body:
3333
description: In what target framework(s) do you see this issue?
3434
multiple: true
3535
options:
36-
- net8.0-*
37-
- net9.0-*
38-
- net10.0-*
39-
- Other
36+
- net8.0-* [unsupported, please update to .NET 9+]
37+
- net9.0-*
38+
- net10.0-*
39+
- net11.0-*
40+
- Other
4041
validations:
4142
required: true
4243
- type: input

.github/ISSUE_TEMPLATE/04-bindings.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ body:
2424
description: In what target framework(s) do you see this issue?
2525
multiple: true
2626
options:
27-
- net8.0-*
28-
- net9.0-*
29-
- net10.0-*
30-
- Other
27+
- net8.0-* [unsupported, please update to .NET 9+]
28+
- net9.0-*
29+
- net10.0-*
30+
- net11.0-*
31+
- Other
3132
validations:
3233
required: true
3334
- type: input

.github/ISSUE_TEMPLATE/05-other.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ body:
2323
description: In what target framework(s) do you see this issue?
2424
multiple: true
2525
options:
26-
- net8.0-*
27-
- net9.0-*
28-
- net10.0-*
29-
- Other
26+
- net8.0-* [unsupported, please update to .NET 9+]
27+
- net9.0-*
28+
- net10.0-*
29+
- net11.0-*
30+
- Other
3031
validations:
3132
required: true
3233
- type: input

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ void DoSomething (Action<bool, NSError> completion);
274274

275275
- `main` - .NET 9 development
276276
- `net10.0` - .NET 10 development
277+
- `net11.0` - .NET 11 development
277278
- `release/` branches for specific releases
278279
- Platform-specific branches for Xcode updates
279280

tools/devops/automation/run-post-ci-build-vs-insertion.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ resources:
4141
- net8.0
4242
- net9.0
4343
- net10.0
44+
- net11.0
4445
- xcode*
4546
stages:
4647
- build_packages

tools/devops/automation/templates/main-stage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ stages:
117117
eq(variables['Build.SourceBranch'], 'refs/heads/net8.0'),
118118
eq(variables['Build.SourceBranch'], 'refs/heads/net9.0'),
119119
eq(variables['Build.SourceBranch'], 'refs/heads/net10.0'),
120+
eq(variables['Build.SourceBranch'], 'refs/heads/net11.0'),
120121
startsWith(variables['Build.SourceBranch'], 'refs/heads/xcode'),
121122
eq(parameters.forceInsertion, true)
122123
)

0 commit comments

Comments
 (0)