-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
Description
Description
Currently there are runtime workloads for iOS and tvOS:
runtime/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Manifest/WorkloadManifest.json.in
Lines 33 to 63 in dbb05eb
| "microsoft-net-runtime-ios": { | |
| "abstract": true, | |
| "description": "iOS Mono Runtime and AOT Workload", | |
| "packs": [ | |
| "Microsoft.NET.Runtime.RuntimeConfigParser.Task", | |
| "Microsoft.NET.Runtime.MonoAOTCompiler.Task", | |
| "Microsoft.NETCore.App.Runtime.Mono.ios-arm", | |
| "Microsoft.NETCore.App.Runtime.Mono.ios-arm64", | |
| "Microsoft.NETCore.App.Runtime.Mono.iossimulator", | |
| "Microsoft.NETCore.App.Runtime.Mono.iossimulator-x86", | |
| "Microsoft.NETCore.App.Runtime.AOT.Cross.ios-arm", | |
| "Microsoft.NETCore.App.Runtime.AOT.Cross.ios-arm64", | |
| "Microsoft.NETCore.App.Runtime.AOT.Cross.iossimulator", | |
| "Microsoft.NETCore.App.Runtime.AOT.Cross.iossimulator-x86" | |
| ], | |
| "platforms": [ "osx-arm64", "osx-x64" ] | |
| }, | |
| "microsoft-net-runtime-tvos": { | |
| "abstract": true, | |
| "description": "tvOS Mono Runtime and AOT Workload", | |
| "packs": [ | |
| "Microsoft.NET.Runtime.RuntimeConfigParser.Task", | |
| "Microsoft.NET.Runtime.MonoAOTCompiler.Task", | |
| "Microsoft.NETCore.App.Runtime.Mono.tvos-arm64", | |
| "Microsoft.NETCore.App.Runtime.Mono.tvossimulator", | |
| "Microsoft.NETCore.App.Runtime.AOT.Cross.tvos-arm64", | |
| "Microsoft.NETCore.App.Runtime.AOT.Cross.tvossimulator" | |
| ], | |
| "platforms": [ "osx-arm64", "osx-x64" ] | |
| } | |
| }, |
but we're missing runtime workloads for Mac Catalyst and macOS.
While not strictly necessary, this would make it easier for us to acquire the AOT compilers for Mac Catalyst and macOS.
CC @steveisok