-
Notifications
You must be signed in to change notification settings - Fork 565
Add CoreCLR host to the build #9900
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
No tests are enabled, only the native runtime is added to the build. This should make it possible to run a **Release** build of `dotnet new android` and `dotnet new maui`
jonathanpeppers
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should also update these two lines, so we don't build the 32-bit packs:
Lines 220 to 221 in b9f6a9d
| <AndroidAbiAndRuntimeFlavor Include="@(AndroidSupportedTargetJitAbi)" AndroidRuntime="NativeAOT" /> | |
| <AndroidAbiAndRuntimeFlavor Include="@(AndroidSupportedTargetJitAbi)" AndroidRuntime="CoreCLR" /> |
src/Xamarin.Android.Build.Tasks/Microsoft.NET.Sdk.Android/WorkloadManifest.in.json
Outdated
Show resolved
Hide resolved
| "Microsoft.Android.Runtime.Mono.36.android-x64" | ||
| "Microsoft.Android.Runtime.Mono.36.android-x64", | ||
| "Microsoft.Android.Runtime.CoreCLR.36.android-arm64", | ||
| "Microsoft.Android.Runtime.CoreCLR.36.android-x64" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These also not necessary, but might be ok.
src/Xamarin.Android.Build.Tasks/Microsoft.NET.Sdk.Android/WorkloadManifest.in.json
Show resolved
Hide resolved
* main: Bump com.android.tools.build:manifest-merger from 31.8.2 to 31.9.0 (#9898)
No tests are enabled, only the native runtime is added to the build.
This should make it possible to run a Release build of
dotnet new androidanddotnet new maui