Skip to content

Build your first .NET MAUI App for Tizen

Kangho Hur edited this page Aug 25, 2021 · 3 revisions

Prerequisites

Get started with .NET command-line interface

ℹ️ Visual Studio 2022 and Visual Studio for Mac support will arrive in a future release.

In this tutorial, you'll create and run your first .NET MAUI app for Tizen using the .NET command-line interface (CLI):

  1. In the .NET CLI, create a new .NET MAUI app:
dotnet new maui -n HelloMaui
  1. In the .NET CLI, change directory to the newly created project and open the Visual Studio Code:
cd HelloMaui
code .
  1. Build and launch the app

ℹ️ Tizen emulators and devices that support .NET6 have not yet been officially released, and we will announce a binary for testing soon.

dotnet build -t:Run -f net6.0-tizen

ℹ️ It's recommended to start a Tizen emulator before building and launching your app

Build your first .NET MAUI App for Tizen