Xamarin.iOS / Xamarin.Mac / Xamarin.tvOS → .NET Migration
For SDK-style project templates, MSBuild property tables, RuntimeIdentifier conversion tables, and namespace mappings, see references/ios-migration-api.md.
Migration Workflow
- Create new .NET for iOS/macOS/tvOS project (same name, copy code into it)
- Update MSBuild properties (see
references/ios-migration-api.md)
- Move
MinimumOSVersion from Info.plist → SupportedOSPlatformVersion in csproj
- Copy code, resources, storyboards, entitlements
- Update NuGet dependencies
- Migrate binding libraries (if applicable)
- Replace Xamarin.Essentials with
<UseMauiEssentials>true</UseMauiEssentials>
- Remove
.dll.config files (not supported in .NET)
- Delete
bin//obj/, build, verify code signing, test on device
Strategy: Create a new project and copy code into it — don't edit the existing project file.
Critical Gotchas
⚠️ No Backward Compatibility for iOS/Mac NuGet Packages
Unlike Android, there is no backward compatibility with old Xamarin iOS/Mac TFMs. Packages targeting monotouch, xamarinios, xamarinios10, monomac, or xamarinmac will not work — they must be recompiled for net8.0-ios etc.
⚠️ CodeSigningKey → CodesignKey Rename
<!-- ❌ Old property name — silently ignored -->
<CodeSigningKey>Apple Distribution: My Company</CodeSigningKey>
<!-- ✅ Renamed property -->
<CodesignKey>Apple Distribution: My Company</CodesignKey>
Also rename MtouchEnableSGenConc → EnableSGenConc.
⚠️ No .dll.config or .exe.config Support
.dll.config and <dllmap> are not supported in .NET Core. Migrate configuration to appsettings.json, embedded resources, or platform preferences.
⚠️ watchOS Is Not Supported
Xamarin.watchOS has no .NET equivalent. Bundle Swift extensions with .NET for iOS apps instead.
⚠️ OpenGL (iOS) Is Not Supported
OpenTK is unavailable in .NET for iOS. Migrate to Metal or SceneKit.
⚠️ Linker Behavior Is Stricter
Update LinkDescription XML files if custom linker configuration was used. The linker in .NET is stricter and may trim symbols that the Xamarin linker preserved.
Platform-Specific Pitfalls
| Pitfall |
Impact |
Mitigation |
| iOS/Mac NuGet packages not backward-compatible |
Build failures for packages targeting xamarinios |
Recompile or find .NET-compatible alternatives |
CodeSigningKey silently ignored |
App fails to sign but no clear error |
Rename to CodesignKey |
MtouchArch not converted |
Wrong architecture targeted |
Convert to RuntimeIdentifier(s) — see reference tables |
MinimumOSVersion left in Info.plist |
Ignored — uses csproj value |
Move to SupportedOSPlatformVersion |
| Entitlements path wrong |
Build succeeds but runtime failures |
Verify CodesignEntitlements points to correct file |
.dll.config files present |
Silently ignored at runtime |
Remove and migrate to alternatives |
Binding Library Migration Tips
- Use SDK-style project format with
net8.0-ios TFM
- The binding generator and API definitions work the same way
- Verify native frameworks are updated for the target iOS version
- Test thoroughly — binding edge cases are common in .NET migrations
NuGet Compatibility Decision
| Situation |
Action |
| You own the package |
Recompile with .NET TFMs |
| Package has preview .NET version |
Use preview |
| No compatible version |
Replace with .NET-compatible alternative |
| .NET Standard library (no platform deps) |
✅ Still works |
Build Troubleshooting
| Issue |
Fix |
| Namespace not found |
Most UIKit namespaces are unchanged — verify against .NET for iOS API surface |
| Linker errors |
Update LinkDescription XML files — linker is stricter in .NET |
| Code signing failure |
Verify CodesignKey, CodesignProvision, CodesignEntitlements |
| Entitlements mismatch |
Ensure entitlements file matches provisioning profile |
API Currency Warning
If your migrated app will also adopt .NET MAUI controls (e.g., via UseMaui), check the maui-current-apis skill for deprecated MAUI APIs to avoid (ListView, Frame, Device.*, etc.).
Quick Checklist
- ☐ Created new .NET for iOS/macOS/tvOS project
- ☐ Set
TargetFramework to net8.0-ios (or -macos/-tvos)
- ☐ Moved
MinimumOSVersion → SupportedOSPlatformVersion in csproj
- ☐ Converted
MtouchArch → RuntimeIdentifier(s)
- ☐ Converted
HttpClientHandler → UseNativeHttpHandler
- ☐ Renamed
CodeSigningKey → CodesignKey
- ☐ Renamed
MtouchEnableSGenConc → EnableSGenConc
- ☐ Copied source, resources, storyboards, entitlements
- ☐ Updated NuGet dependencies (no backward compat with Xamarin TFMs!)
- ☐ Added
UseMauiEssentials + Platform.Init() if using Essentials
- ☐ Removed
.dll.config files
- ☐ Deleted
bin/ and obj/ folders
- ☐ Verified code signing and provisioning
- ☐ Tested on physical device
1---2name: xamarin-ios-migration3description: **WORKFLOW SKILL** - Guide for migrating Xamarin.iOS, Xamarin.Mac, and Xamarin.tvOS native apps to .NET for iOS, .NET for macOS, and .NET for tvOS. Covers SDK-style project conversion, target framework monikers, MSBuild property changes, Info.plist updates, iOS binding library migration, Xamarin.Essentials in native apps, NuGet dependency compatibility, and code signing changes. USE FOR: "migrate Xamarin.iOS", "upgrade Xamarin.iOS to .NET", "Xamarin.iOS to .NET for iOS", "iOS project migration", "Xamarin.Mac migration", "tvOS migration", "iOS binding library migration", "MtouchArch to RuntimeIdentifier", "Apple project migration". DO NOT USE FOR: migrating Xamarin.Forms apps (use xamarin-forms-migration), migrating Xamarin.Android apps (use xamarin-android-migration), creating new MAUI apps from scratch (use feature-specific MAUI skills).4---56# Xamarin.iOS / Xamarin.Mac / Xamarin.tvOS → .NET Migration78For SDK-style project templates, MSBuild property tables, RuntimeIdentifier conversion tables, and namespace mappings, see `references/ios-migration-api.md`.910## Migration Workflow11121. Create new .NET for iOS/macOS/tvOS project (same name, copy code into it)132. Update MSBuild properties (see `references/ios-migration-api.md`)143. Move `MinimumOSVersion` from Info.plist → `SupportedOSPlatformVersion` in csproj154. Copy code, resources, storyboards, entitlements165. Update NuGet dependencies176. Migrate binding libraries (if applicable)187. Replace Xamarin.Essentials with `<UseMauiEssentials>true</UseMauiEssentials>`198. Remove `.dll.config` files (not supported in .NET)209. Delete `bin/`/`obj/`, build, verify code signing, test on device2122> **Strategy:** Create a new project and copy code into it — don't edit the existing project file.2324## Critical Gotchas2526### ⚠️ No Backward Compatibility for iOS/Mac NuGet Packages2728Unlike Android, there is **no backward compatibility** with old Xamarin iOS/Mac TFMs. Packages targeting `monotouch`, `xamarinios`, `xamarinios10`, `monomac`, or `xamarinmac` **will not work** — they must be recompiled for `net8.0-ios` etc.2930### ⚠️ `CodeSigningKey` → `CodesignKey` Rename3132```xml33<!-- ❌ Old property name — silently ignored -->34<CodeSigningKey>Apple Distribution: My Company</CodeSigningKey>3536<!-- ✅ Renamed property -->37<CodesignKey>Apple Distribution: My Company</CodesignKey>38```3940Also rename `MtouchEnableSGenConc` → `EnableSGenConc`.4142### ⚠️ No `.dll.config` or `.exe.config` Support4344`.dll.config` and `<dllmap>` are not supported in .NET Core. Migrate configuration to `appsettings.json`, embedded resources, or platform preferences.4546### ⚠️ watchOS Is Not Supported4748Xamarin.watchOS has **no .NET equivalent**. Bundle Swift extensions with .NET for iOS apps instead.4950### ⚠️ OpenGL (iOS) Is Not Supported5152OpenTK is unavailable in .NET for iOS. Migrate to Metal or SceneKit.5354### ⚠️ Linker Behavior Is Stricter5556Update `LinkDescription` XML files if custom linker configuration was used. The linker in .NET is stricter and may trim symbols that the Xamarin linker preserved.5758## Platform-Specific Pitfalls5960| Pitfall | Impact | Mitigation |61|---------|--------|------------|62| iOS/Mac NuGet packages not backward-compatible | Build failures for packages targeting `xamarinios` | Recompile or find .NET-compatible alternatives |63| `CodeSigningKey` silently ignored | App fails to sign but no clear error | Rename to `CodesignKey` |64| `MtouchArch` not converted | Wrong architecture targeted | Convert to `RuntimeIdentifier(s)` — see reference tables |65| `MinimumOSVersion` left in Info.plist | Ignored — uses csproj value | Move to `SupportedOSPlatformVersion` |66| Entitlements path wrong | Build succeeds but runtime failures | Verify `CodesignEntitlements` points to correct file |67| `.dll.config` files present | Silently ignored at runtime | Remove and migrate to alternatives |6869## Binding Library Migration Tips7071- Use SDK-style project format with `net8.0-ios` TFM72- The binding generator and API definitions work the same way73- Verify native frameworks are updated for the target iOS version74- **Test thoroughly** — binding edge cases are common in .NET migrations7576## NuGet Compatibility Decision7778| Situation | Action |79|-----------|--------|80| You own the package | Recompile with .NET TFMs |81| Package has preview .NET version | Use preview |82| No compatible version | Replace with .NET-compatible alternative |83| .NET Standard library (no platform deps) | ✅ Still works |8485## Build Troubleshooting8687| Issue | Fix |88|-------|-----|89| Namespace not found | Most UIKit namespaces are unchanged — verify against .NET for iOS API surface |90| Linker errors | Update `LinkDescription` XML files — linker is stricter in .NET |91| Code signing failure | Verify `CodesignKey`, `CodesignProvision`, `CodesignEntitlements` |92| Entitlements mismatch | Ensure entitlements file matches provisioning profile |9394## API Currency Warning9596If your migrated app will also adopt .NET MAUI controls (e.g., via `UseMaui`), check the **maui-current-apis** skill for deprecated MAUI APIs to avoid (ListView, Frame, Device.*, etc.).9798## Quick Checklist991001. ☐ Created new .NET for iOS/macOS/tvOS project1012. ☐ Set `TargetFramework` to `net8.0-ios` (or `-macos`/`-tvos`)1023. ☐ Moved `MinimumOSVersion` → `SupportedOSPlatformVersion` in csproj1034. ☐ Converted `MtouchArch` → `RuntimeIdentifier(s)`1045. ☐ Converted `HttpClientHandler` → `UseNativeHttpHandler`1056. ☐ Renamed `CodeSigningKey` → `CodesignKey`1067. ☐ Renamed `MtouchEnableSGenConc` → `EnableSGenConc`1078. ☐ Copied source, resources, storyboards, entitlements1089. ☐ Updated NuGet dependencies (no backward compat with Xamarin TFMs!)10910. ☐ Added `UseMauiEssentials` + `Platform.Init()` if using Essentials11011. ☐ Removed `.dll.config` files11112. ☐ Deleted `bin/` and `obj/` folders11213. ☐ Verified code signing and provisioning11314. ☐ Tested on physical device