Skip to content

Commit 742089f

Browse files
Merge branch 'main' into dev/mandel/xunit-3-bump-rgen
2 parents bb9f3f0 + a3fa166 commit 742089f

File tree

22 files changed

+83
-355
lines changed

22 files changed

+83
-355
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

Make.versions

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ MACCATALYST_NUGET_OS_VERSION=26.0
2828

2929
# The following are the OS versions we first supported with the current .NET version.
3030
# These versions must *not* change with minor .NET updates, only major .NET releases.
31-
IOS_TARGET_PLATFORM_VERSION_LIBRARY=26.0
32-
TVOS_TARGET_PLATFORM_VERSION_LIBRARY=26.0
33-
MACOS_TARGET_PLATFORM_VERSION_LIBRARY=26.0
34-
MACCATALYST_TARGET_PLATFORM_VERSION_LIBRARY=26.0
31+
IOS_TARGET_PLATFORM_VERSION_LIBRARY=18.0
32+
TVOS_TARGET_PLATFORM_VERSION_LIBRARY=18.0
33+
MACOS_TARGET_PLATFORM_VERSION_LIBRARY=15.0
34+
MACCATALYST_TARGET_PLATFORM_VERSION_LIBRARY=18.0
3535

3636
# In theory we should define the default platform version if it's not specified in the TFM. The default should not change for a given .NET version:
3737
# * We release support for iOS 14.5 with .NET 6
@@ -110,16 +110,6 @@ SUPPORTED_API_VERSIONS_MACCATALYST=$(DOTNET_TFM)-$(MACCATALYST_NUGET_OS_VERSION)
110110

111111
# Add older versions here!
112112

113-
SUPPORTED_API_VERSIONS_IOS+=net8.0-17.0
114-
SUPPORTED_API_VERSIONS_TVOS+=net8.0-17.0
115-
SUPPORTED_API_VERSIONS_MACOS+=net8.0-14.0
116-
SUPPORTED_API_VERSIONS_MACCATALYST+=net8.0-17.0
117-
118-
SUPPORTED_API_VERSIONS_IOS+=net8.0-18.0
119-
SUPPORTED_API_VERSIONS_TVOS+=net8.0-18.0
120-
SUPPORTED_API_VERSIONS_MACOS+=net8.0-15.0
121-
SUPPORTED_API_VERSIONS_MACCATALYST+=net8.0-18.0
122-
123113
SUPPORTED_API_VERSIONS_IOS+=net9.0-18.0
124114
SUPPORTED_API_VERSIONS_TVOS+=net9.0-18.0
125115
SUPPORTED_API_VERSIONS_MACOS+=net9.0-15.0

docs/building-apps/build-items.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,27 @@ the `CollectAppManifestsDependsOn` property:
309309
</Target>
310310
```
311311

312+
### SkipCodesignItems
313+
314+
An item group that specifies files or directories in the app bundle that should not be signed.
315+
316+
The purpose is to exclude from signing files and directories that are copied
317+
manually (for instance through custom MSBuild targets in the project file) to
318+
the app bundle, and which are already signed.
319+
320+
The path to include is the path to the file or directory relative to the root
321+
of the app bundle.
322+
323+
Example:
324+
325+
```xml
326+
<ItemGroup>
327+
<SkipCodesignItems Include="Contents/SharedSupport/mysignedlibrary.dylib" />
328+
</ItemGroup>
329+
```
330+
331+
Applicable to all platforms.
332+
312333
## XcodeProject
313334

314335
`<XcodeProject>` can be used to build and consume the outputs

eng/Version.Details.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ This file should be imported by eng/Versions.props
3333
<MicrosofttvOSSdknet80_180PackageVersion>18.0.8324</MicrosofttvOSSdknet80_180PackageVersion>
3434
<MicrosofttvOSSdknet90_180PackageVersion>18.0.9617</MicrosofttvOSSdknet90_180PackageVersion>
3535
<!-- dotnet/arcade dependencies -->
36-
<MicrosoftDotNetArcadeSdkPackageVersion>9.0.0-beta.25465.2</MicrosoftDotNetArcadeSdkPackageVersion>
37-
<MicrosoftDotNetBuildTasksFeedPackageVersion>9.0.0-beta.25465.2</MicrosoftDotNetBuildTasksFeedPackageVersion>
36+
<MicrosoftDotNetArcadeSdkPackageVersion>9.0.0-beta.25473.2</MicrosoftDotNetArcadeSdkPackageVersion>
37+
<MicrosoftDotNetBuildTasksFeedPackageVersion>9.0.0-beta.25473.2</MicrosoftDotNetBuildTasksFeedPackageVersion>
3838
<!-- dotnet/templating dependencies -->
3939
<MicrosoftTemplateEngineTasksPackageVersion>7.0.100-alpha.1.21601.1</MicrosoftTemplateEngineTasksPackageVersion>
4040
<!-- dotnet/xharness dependencies -->

0 commit comments

Comments
 (0)