We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need to update the iOS template to use NET7 and remove the runtime identifier.
The csproj should look something like this:
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net7.0-ios</TargetFramework> <OutputType>Exe</OutputType> <Nullable>enable</Nullable> <ImplicitUsings>true</ImplicitUsings> <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion> </PropertyGroup> </Project>
This will then enable deploying to both the simulator and device without needing to edit the csproj.
Create a new iOS Project. Try and deploy it to a device. It won't work.
Latest
Latest RC
No response
The text was updated successfully, but these errors were encountered:
The xplat template already use .NET 7 by default (and can't be changed to .NET 6 with template parameters).
Sorry, something went wrong.
Update AvaloniaTest.iOS.csproj
068dd91
Fixes #208
Successfully merging a pull request may close this issue.
Describe the bug
We need to update the iOS template to use NET7 and remove the runtime identifier.
The csproj should look something like this:
This will then enable deploying to both the simulator and device without needing to edit the csproj.
To Reproduce
Create a new iOS Project. Try and deploy it to a device. It won't work.
Avalonia Templates version
Latest
Avalonia version
Latest RC
Additional context
No response
The text was updated successfully, but these errors were encountered: