Hello, I am trying to set up a .NET tizen project with a Maui app, I created a new project using the MAUI.NET App template, which at first obviously worked fine with no errors.
After editing the project file and removing the commented Tizen TargetFrameworks as follows
<TargetFrameworks>net6.0-windows10.0.19041.0;net6.0-tizen</TargetFrameworks>
and changing the runtime target to it, net6.0-tizen, after trying to build the application I am getting a BUNCH (356) of syntax related errors on files like Styles.xaml.g.cs and MainPage.xaml.g.cs (auto-generated files…)
Now even after removing the net6.0-tizen from the TargetFrameworks I am still getting these errors! I’ve tried deleting the bin and debug folders.
When deleting the net6.0-windows10.0.19041.0 from target frameworks Visual Studio recognizes the running emulator and attaches to it correctly.
I’ve also noticed that the errors all seem to originate all from the
global::http://schemas.microsoft
references, where the // in the url gets treated as a comment and therefore the line endings don’t get noticed.Any help on setting up a tizen.Net project with Maui is highly appreciated, Thanks!