File tree 6 files changed +96
-0
lines changed
DateCalculator/DateCalculator.Maui/Platforms/Tizen
MauiBlazorApp/MauiBlazorApp/Platforms/Tizen
TestApp/TestApp/Platforms/Tizen
6 files changed +96
-0
lines changed Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using Microsoft . Maui ;
3
+ using Microsoft . Maui . Hosting ;
4
+
5
+ namespace DateCalculator
6
+ {
7
+ class Program : MauiApplication
8
+ {
9
+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
10
+
11
+ static void Main ( string [ ] args )
12
+ {
13
+ var app = new Program ( ) ;
14
+ app . Run ( args ) ;
15
+ }
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest package =" com.egvijayanand.maui.datecalculator" version =" 1.0.0" api-version =" 7" xmlns =" http://tizen.org/ns/packages" >
3
+ <profile name =" common" />
4
+ <ui-application appid =" com.egvijayanand.maui.datecalculator" exec =" DateCalculator.dll" multiple =" false" nodisplay =" false" taskmanage =" true" type =" dotnet" launch_mode =" single" >
5
+ <label >DateCalculator</label >
6
+ <icon >appicon.xhigh.png</icon >
7
+ <metadata key =" http://tizen.org/metadata/prefer_dotnet_aot" value =" true" />
8
+ </ui-application >
9
+ <shortcut-list />
10
+ <privileges >
11
+ <privilege >http://tizen.org/privilege/internet</privilege >
12
+ </privileges >
13
+ <dependencies />
14
+ <provides-appdefined-privileges />
15
+ </manifest >
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using Microsoft . Maui ;
3
+ using Microsoft . Maui . Hosting ;
4
+
5
+ namespace MauiBlazorApp
6
+ {
7
+ class Program : MauiApplication
8
+ {
9
+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
10
+
11
+ static void Main ( string [ ] args )
12
+ {
13
+ var app = new Program ( ) ;
14
+ app . Run ( args ) ;
15
+ }
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest package =" com.companyname.mauiblazorapp" version =" 1.0.0" api-version =" 7" xmlns =" http://tizen.org/ns/packages" >
3
+ <profile name =" common" />
4
+ <ui-application appid =" com.companyname.mauiblazorapp" exec =" MauiBlazorApp.dll" multiple =" false" nodisplay =" false" taskmanage =" true" type =" dotnet" launch_mode =" single" >
5
+ <label >MauiBlazorApp</label >
6
+ <icon >appicon.xhigh.png</icon >
7
+ <metadata key =" http://tizen.org/metadata/prefer_dotnet_aot" value =" true" />
8
+ </ui-application >
9
+ <shortcut-list />
10
+ <privileges >
11
+ <privilege >http://tizen.org/privilege/internet</privilege >
12
+ </privileges >
13
+ <dependencies />
14
+ <provides-appdefined-privileges />
15
+ </manifest >
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using Microsoft . Maui ;
3
+ using Microsoft . Maui . Hosting ;
4
+
5
+ namespace TestApp
6
+ {
7
+ class Program : MauiApplication
8
+ {
9
+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
10
+
11
+ static void Main ( string [ ] args )
12
+ {
13
+ var app = new Program ( ) ;
14
+ app . Run ( args ) ;
15
+ }
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest package =" com.companyname.testapp" version =" 1.0.0" api-version =" 7" xmlns =" http://tizen.org/ns/packages" >
3
+ <profile name =" common" />
4
+ <ui-application appid =" com.companyname.testapp" exec =" TestApp.dll" multiple =" false" nodisplay =" false" taskmanage =" true" type =" dotnet" launch_mode =" single" >
5
+ <label >TestApp</label >
6
+ <icon >appicon.xhigh.png</icon >
7
+ <metadata key =" http://tizen.org/metadata/prefer_dotnet_aot" value =" true" />
8
+ </ui-application >
9
+ <shortcut-list />
10
+ <privileges >
11
+ <privilege >http://tizen.org/privilege/internet</privilege >
12
+ </privileges >
13
+ <dependencies />
14
+ <provides-appdefined-privileges />
15
+ </manifest >
You can’t perform that action at this time.
0 commit comments