-
Notifications
You must be signed in to change notification settings - Fork 30
Build your first .NET MAUI App for Tizen
Kangho Hur edited this page Aug 25, 2021
·
3 revisions
-
An environment that has been configured for .NET MAUI development. For more information, see Install latest .NET 6.
-
An environment that has been configured for Tizen .NET development. For more information, see Install latest Tizen workload for .NET 6.0.
ℹ️ 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):
- In the .NET CLI, create a new .NET MAUI app:
dotnet new maui -n HelloMaui
- In the .NET CLI, change directory to the newly created project and open the Visual Studio Code:
cd HelloMaui
code .
- 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