Skip to content

Known Issues

Jay Cho edited this page Oct 6, 2022 · 13 revisions
  • Visual Studio Tools for Tizen

    • Multiple target frameworks selection on Visual Studio 2022 Preview is not yet supported properly for net6.0-tizen.
      • CLI works for the workaround.
        Build net6.0-tizen framework
          ~$ dotnet build -f net6.0-tizen ./MauiAppWithTizen.csproj
        
        Build & Run
          ~$ dotnet build -f net6.0-tizen ./MauiAppWithTizen.csproj -t:Run
        
    • Currently on Visual Studio 2022 Preview, net6.0-tizen as a single target framework project is supported.
    • Debug run is expected to be supported from the next general release of Visual studio Tools for Tizen.
  • Tizen Emulator supporting .NET6

    • Tizen emulators and devices supporting .NET6 have not yet been officially released. We will announce a binary for testing soon.
  • Supporting HotReload is not yet supported for Tizen.

  • Setting RuntimeIdentifiers is supported when build the projects, but not for running apps on Visual Studio Debug Run or Start Without Debugging.

<PropertyGroup Condition="$(TargetFramework.Contains('-tizen'))">    
    <RuntimeIdentifiers>tizen-x86;tizen-armel</RuntimeIdentifiers>
</PropertyGroup>

Clone this wiki locally