mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 18:41:29 +00:00
Add C# iOS support
This support is experimental and requires .NET 8 Known issues: - Requires macOS due to use of lipo and xcodebuild - arm64 simulator templates are not currently included in the official packaging
This commit is contained in:
parent
9215b03429
commit
ee9a735c26
16 changed files with 471 additions and 298 deletions
|
|
@ -25,6 +25,9 @@ namespace GodotTools.ProjectEditor
|
|||
mainGroup.AddProperty("TargetFramework", "net6.0");
|
||||
mainGroup.AddProperty("EnableDynamicLoading", "true");
|
||||
|
||||
var net8 = mainGroup.AddProperty("TargetFramework", "net8.0");
|
||||
net8.Condition = " '$(GodotTargetPlatform)' == 'ios' ";
|
||||
|
||||
string sanitizedName = IdentifierUtils.SanitizeQualifiedIdentifier(name, allowEmptyIdentifiers: true);
|
||||
|
||||
// If the name is not a valid namespace, manually set RootNamespace to a sanitized one.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue