Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1e64a22
[net11.0] Make CoreCLR the default runtime.
rolfbjarne Mar 31, 2026
164df35
[tests] Update the BuildStructure test to test both CoreCLR + MonoVM.
rolfbjarne Apr 1, 2026
79dc833
[tests] Fix BundleStructureTest CoreCLR variations.
rolfbjarne Apr 1, 2026
9859bc9
[runtime] Build extension libs for CoreCLR for all platforms.
rolfbjarne Apr 2, 2026
1d9c1fe
[tests] Update the CustomizedCodeSigning to test both CoreCLR + MonoVM.
rolfbjarne Apr 2, 2026
c3e304f
[tests] Fix CustomizedCodeSigning CoreCLR variations.
rolfbjarne Apr 2, 2026
31a68c0
[tests] Dedup tests are only applicable to MonoVM.
rolfbjarne Apr 2, 2026
ef006ef
[msbuild] Don't run R2R framework/dylib creation when IsMacEnabled=false
rolfbjarne Apr 2, 2026
99a5310
[tests] Split IsNotMacBuild into _Mono and _CoreCLR variants
rolfbjarne Apr 2, 2026
fb01092
[tests] Split LinkedWithNativeLibraries into _Mono and _CoreCLR variants
rolfbjarne Apr 2, 2026
de04880
[tests] Reduce duplication in expectedFrameworks arrays
rolfbjarne Apr 2, 2026
231e941
[tests] Format compact array declarations with one element per line
rolfbjarne Apr 2, 2026
a2ad2b1
[msbuild] Fix empty R2R framework name in multi-RID builds; add Mono/…
rolfbjarne Apr 3, 2026
5190dfe
Split CodeChangeSkipsTargets into Mono/CoreCLR variants
rolfbjarne Apr 3, 2026
59d0ab4
Split BuildIpaTest into Mono/CoreCLR variants
rolfbjarne Apr 3, 2026
c5b64cf
[tests] IncrementalBuildTest.Interpreter is mono-only.
rolfbjarne Apr 6, 2026
0e8a883
Split IncrementalBuildTest.Link by runtime
rolfbjarne Apr 6, 2026
c3ec0b9
Fix multi-RID CoreCLR publish and split PublishTest by runtime
rolfbjarne Apr 6, 2026
b8b4597
Fix condition.
rolfbjarne Apr 6, 2026
849588d
Split BundleStructureWithRemoteMac by runtime
rolfbjarne Apr 7, 2026
8e8a3e6
Handle Windows zip separators in CoreCLR bundle filtering
rolfbjarne Apr 7, 2026
bb769ea
Accommodate CoreCLR CI differences
rolfbjarne Apr 8, 2026
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
4 changes: 1 addition & 3 deletions dotnet/targets/Xamarin.Shared.Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@
-->
<_UseNativeAot Condition="'$(PublishAot)' == 'true' And '$(_IsPublishing)' == 'true'">true</_UseNativeAot>

<UseMonoRuntime Condition=" '$(UseMonoRuntime)' == '' And '$(_PlatformName)' == 'macOS'">false</UseMonoRuntime>
<UseMonoRuntime Condition=" '$(UseMonoRuntime)' == '' And '$(_UseNativeAot)' == 'true'">false</UseMonoRuntime>
<UseMonoRuntime Condition=" '$(UseMonoRuntime)' == ''">true</UseMonoRuntime>
<UseMonoRuntime Condition=" '$(UseMonoRuntime)' == ''">false</UseMonoRuntime>

<AfterMicrosoftNETSdkTargets>$(AfterMicrosoftNETSdkTargets);$(MSBuildThisFileDirectory)Microsoft.$(_PlatformName).Sdk.targets</AfterMicrosoftNETSdkTargets>

Expand Down
Loading