Tizen .NET is an advanced way to develop applications with .NET technology for Tizen OS.
Tizen .NET is :
This is an early preview of Tizen in .NET 6 not for production use. Expect breaking changes as this is still in development for .NET 6.
.NET MAUI Check Tool doesn't support Tizen environment yet, but hopes to be supported soon.
- Tizen SDK
- .NET 6 Preview SDK
- Linux / Windows / macOS : https://dotnet.microsoft.com/download/dotnet/6.0
- Windows: Samsung.NET.Workload.Tizen.6.5.100-preview.5.56.msi
- Linux / macOS:
git clone -b release/6.0.1xx-preview5 https://github.com/Samsung/Tizen.NET
cd Tizen.NET/workload
make install DESTDIR=<.net 6 preview sdk path>
You can see the Tizen template as follows if it is properly installed.
dotnet new --list
Template Name Short Name Language Tags
-------------------------------------------- -------------- ---------- ----------------------
Console Application console [C#],F#,VB Common/Console
Class Library classlib [C#],F#,VB Common/Library
Worker Service worker [C#],F# Common/Worker/Web
MSTest Test Project mstest [C#],F#,VB Test/MSTest
NUnit 3 Test Item nunit-test [C#],F#,VB Test/NUnit
NUnit 3 Test Project nunit [C#],F#,VB Test/NUnit
xUnit Test Project xunit [C#],F#,VB Test/xUnit
*Tizen .NET Application** *tizen* *[C#]* *Tizen*
Razor Component razorcomponent [C#] Web/ASP.NET
Razor Page page [C#] Web/ASP.NET
...
dotnet new tizen -n HelloTizenNet6
When the project is successfully created, the following files are created.
└── HelloTizenNet6
├── HelloTizenNet6.csproj
├── Main.cs
├── shared
└── tizen-manifest.xml
This is a Tizen .NET app, not a .NET MAUI app. A .NET MAUI app that supports Tizen is currently under development and will be released as soon as possible.
dotnet build
When the project builds successfully, tizen app package (.tpk) is created as follows.
Microsoft (R) Build Engine version 16.10.0-preview-21181-07+073022eb4 for .NET
Copyright (C) Microsoft Corporation. All rights reserved.
Determining projects to restore...
Restored /home/rookiejava/workspace/HelloTizenNet6/HelloTizenNet6.csproj (in 165 ms).
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
HelloTizenNet6 -> /home/rookiejava/workspace/HelloTizenNet6/bin/Debug/net6.0-tizen/HelloTizenNet6.dll
TizenTpkFiles : shared/res/HelloTizenNet6.png
TizenTpkFiles : tizen-manifest.xml
HelloTizenNet6 is signed with Default Certificates!
HelloTizenNet6 -> /home/rookiejava/workspace/HelloTizenNet6/bin/Debug/net6.0-tizen/com.companyname.HelloTizenNet6-1.0.0.tpk
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:04.83
Unfortunately dotnet run
is not yet integrated. So for now you need to use sdb
to install the app.
sdb install bin/Debug/net6.0-tizen/com.companyname.HelloTizenNet6-1.0.0.tpk
Tizen emulators and devices that support .NET6 have not yet been officially released, and we will announce a binary for testing soon.