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
1 change: 1 addition & 0 deletions .azuredevops/policies/branchClassification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ configuration:
- net8.0
- net9.0
- net10.0
- net11.0
- xcode*
classification: production
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/01-building-an-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ body:
description: In what target framework(s) do you see this issue?
multiple: true
options:
- net8.0-*
- net9.0-*
- net10.0-*
- Other
- net8.0-* [unsupported, please update to .NET 9+]
- net9.0-*
- net10.0-*
- net11.0-*
- Other
validations:
required: true
- type: input
Expand Down
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/02-running-an-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ body:
description: In what target framework(s) do you see this issue?
multiple: true
options:
- net8.0-*
- net9.0-*
- net10.0-*
- Other
- net8.0-* [unsupported, please update to .NET 9+]
- net9.0-*
- net10.0-*
- net11.0-*
- Other
validations:
required: true
- type: input
Expand Down
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/03-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ body:
description: In what target framework(s) do you see this issue?
multiple: true
options:
- net8.0-*
- net9.0-*
- net10.0-*
- Other
- net8.0-* [unsupported, please update to .NET 9+]
- net9.0-*
- net10.0-*
- net11.0-*
- Other
validations:
required: true
- type: input
Expand Down
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/04-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ body:
description: In what target framework(s) do you see this issue?
multiple: true
options:
- net8.0-*
- net9.0-*
- net10.0-*
- Other
- net8.0-* [unsupported, please update to .NET 9+]
- net9.0-*
- net10.0-*
- net11.0-*
- Other
validations:
required: true
- type: input
Expand Down
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/05-other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ body:
description: In what target framework(s) do you see this issue?
multiple: true
options:
- net8.0-*
- net9.0-*
- net10.0-*
- Other
- net8.0-* [unsupported, please update to .NET 9+]
- net9.0-*
- net10.0-*
- net11.0-*
- Other
validations:
required: true
- type: input
Expand Down
1 change: 1 addition & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ void DoSomething (Action<bool, NSError> completion);

- `main` - .NET 9 development
- `net10.0` - .NET 10 development
- `net11.0` - .NET 11 development
- `release/` branches for specific releases
- Platform-specific branches for Xcode updates

Expand Down
1 change: 1 addition & 0 deletions tools/devops/automation/run-post-ci-build-vs-insertion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ resources:
- net8.0
- net9.0
- net10.0
- net11.0
- xcode*
stages:
- build_packages
Expand Down
1 change: 1 addition & 0 deletions tools/devops/automation/templates/main-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ stages:
eq(variables['Build.SourceBranch'], 'refs/heads/net8.0'),
eq(variables['Build.SourceBranch'], 'refs/heads/net9.0'),
eq(variables['Build.SourceBranch'], 'refs/heads/net10.0'),
eq(variables['Build.SourceBranch'], 'refs/heads/net11.0'),
startsWith(variables['Build.SourceBranch'], 'refs/heads/xcode'),
eq(parameters.forceInsertion, true)
)
Expand Down
Loading