--- /dev/null
+#!/usr/bin/env python3
+import argparse, os, subprocess
+from pathlib import Path
+
+# Get the solution list
+sln_lists = []
+def get_sln_list(dirname, rebuild=False):
+ filenames = os.listdir(dirname)
+ for filename in filenames:
+ full_filename = os.path.join(dirname, filename)
+ if "Managed.sln" in full_filename:
+ continue
+ if os.path.isdir(full_filename):
+ get_sln_list(full_filename, rebuild)
+ else:
+ ext = os.path.splitext(full_filename)[-1]
+ if ext == ".sln":
+ sln_lists.append(full_filename)
+ if rebuild and ext == ".tpk":
+ subprocess.run((f"rm {full_filename}").split(), encoding="utf-8", stdout=subprocess.PIPE).stdout
+ return sln_lists
+
+# Get the solution path
+def get_sln_path(dirname, slnname):
+ filenames = os.listdir(dirname)
+ for filename in filenames:
+ full_filename = os.path.join(dirname, filename)
+ if "Managed.sln" in full_filename:
+ continue
+ if os.path.isdir(full_filename):
+ get_sln_path(full_filename, slnname)
+ else:
+ ext = os.path.splitext(full_filename)[-1]
+ if ext == ".sln" and f"{slnname}" in full_filename:
+ sln_lists.append(full_filename)
+ return sln_lists
+
+# Build the app to generated .tpk
+tpk_lists=[]
+def build_tpk(sln_lists):
+ apps_path = os.path.dirname(__file__)
+ for sln in sln_lists:
+ print(f"Building : {sln}...", end="\r")
+ raw = subprocess.run((f"dotnet build {sln}").split(), encoding="utf-8", stdout=subprocess.PIPE).stdout
+ lines = [l for l in raw.splitlines() if ".tpk" in l]
+ if not len(lines):
+ print(f"Build fail : {sln} ")
+ continue
+ slnname = lines[0].split("->")[0].strip()
+ filepath = lines[0].split("->")[1].strip()
+ filename = Path(filepath).name
+ if slnname not in filename:
+ filepath = rename_tpk(slnname, filepath)
+ filename = Path(filepath).name
+ print(f"Build complete : {filename} ")
+ subprocess.run((f"mv {filepath} {apps_path}").split(), encoding="utf-8", stdout=subprocess.PIPE).stdout
+
+# Change the .tpk name of the application with the same PkgID because of update test
+def rename_tpk(slnname, filepath):
+ new_filepath = filepath.replace(Path(filepath).name, f"org.tizen.example.{slnname}-1.0.0.tpk")
+ subprocess.run((f"mv {filepath} {new_filepath}").split(), encoding="utf-8", stdout=subprocess.PIPE).stdout
+ return new_filepath
+
+# Main entry point
+def main():
+ parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter)
+ parser.add_argument("-r", "--rebuild", help="Remove all existing tpk and rebuild", action="store_true")
+ parser.add_argument("SLN_PATH", type=str, nargs="*", help="Solution path")
+ args = parser.parse_args()
+
+ if args.SLN_PATH:
+ for sln_path in args.SLN_PATH:
+ sln_lists = get_sln_path("./", f"{sln_path}")
+ else:
+ sln_lists = get_sln_list("./", args.rebuild)
+
+ build_tpk(sorted(sln_lists))
+
+
+if __name__ == "__main__":
+ main()
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_AOT_01", "Launcher_TC_AOT_01\Launcher_TC_AOT_01\Launcher_TC_AOT_01.csproj", "{39166858-AEFB-4DA6-84C7-2C8245E29F5E}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_AOT_01.Tizen", "Launcher_TC_AOT_01\Launcher_TC_AOT_01.Tizen\Launcher_TC_AOT_01.Tizen.csproj", "{EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {BF426BD1-2A32-4EE6-BDD5-FE20A613FF1E}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_AOT_01\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_AOT_01\Launcher_TC_AOT_01.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_AOT_01.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_AOT_01.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_AOT_01.Tizen"
+ exec="Launcher_TC_AOT_01.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_AOT_01.Tizen</label>
+ <icon>Launcher_TC_AOT_01.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_AOT_01\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_AOT_02", "Launcher_TC_AOT_02\Launcher_TC_AOT_02\Launcher_TC_AOT_02.csproj", "{B5773FA8-8BA4-42D8-8D16-1650280498A2}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_AOT_02.Tizen", "Launcher_TC_AOT_02\Launcher_TC_AOT_02.Tizen\Launcher_TC_AOT_02.Tizen.csproj", "{8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {8F50B77F-2441-4AE4-BA48-67AD99DFB5E0}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_AOT_02\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_AOT_02\Launcher_TC_AOT_02.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_AOT_02.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_AOT_02.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_AOT_02.Tizen"
+ exec="Launcher_TC_AOT_02.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_AOT_02.Tizen</label>
+ <icon>Launcher_TC_AOT_02.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_AOT_02\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_AOT_03", "Launcher_TC_AOT_03\Launcher_TC_AOT_03\Launcher_TC_AOT_03.csproj", "{45E33CCA-581B-4525-8163-82DD499ECE56}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_AOT_03.Tizen", "Launcher_TC_AOT_03\Launcher_TC_AOT_03.Tizen\Launcher_TC_AOT_03.Tizen.csproj", "{4E777D08-164D-45F0-8339-DA0CA7D72A09}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {45E33CCA-581B-4525-8163-82DD499ECE56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {45E33CCA-581B-4525-8163-82DD499ECE56}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {45E33CCA-581B-4525-8163-82DD499ECE56}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {45E33CCA-581B-4525-8163-82DD499ECE56}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {39D3194E-444E-4D4E-B6A9-BB819FBD71E1}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_AOT_03\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_AOT_03\Launcher_TC_AOT_03.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_AOT_03.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_AOT_03.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_AOT_03.Tizen"
+ exec="Launcher_TC_AOT_03.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_AOT_03.Tizen</label>
+ <icon>Launcher_TC_AOT_03.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_AOT_03\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_LAUNCH_01", "Launcher_TC_LAUNCH_01\Launcher_TC_LAUNCH_01\Launcher_TC_LAUNCH_01.csproj", "{2B62C51A-D76C-441C-A224-D194F3C69751}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_LAUNCH_01.Tizen", "Launcher_TC_LAUNCH_01\Launcher_TC_LAUNCH_01.Tizen\Launcher_TC_LAUNCH_01.Tizen.csproj", "{8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {2B62C51A-D76C-441C-A224-D194F3C69751}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {2B62C51A-D76C-441C-A224-D194F3C69751}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {2B62C51A-D76C-441C-A224-D194F3C69751}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {2B62C51A-D76C-441C-A224-D194F3C69751}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {34A2FEC5-EC52-45AA-B149-19B2D3390799}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_LAUNCH_01\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_LAUNCH_01\Launcher_TC_LAUNCH_01.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_LAUNCH_01.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_LAUNCH_01.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_LAUNCH_01.Tizen"
+ exec="Launcher_TC_LAUNCH_01.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_LAUNCH_01.Tizen</label>
+ <icon>Launcher_TC_LAUNCH_01.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_LAUNCH_01\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_LAUNCH_02", "Launcher_TC_LAUNCH_02\Launcher_TC_LAUNCH_02.csproj", "{42BDB6ED-0169-4F05-BE39-74A1F419AB79}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {C8045C4C-F28C-4FBC-8C94-E85253874E92}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Tizen.NUI;\r
+using Tizen.NUI.BaseComponents;\r
+\r
+namespace Launcher_TC_LAUNCH_02\r
+{\r
+ class Program : NUIApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+ Initialize();\r
+ }\r
+\r
+ void Initialize()\r
+ {\r
+ Window.Instance.KeyEvent += OnKeyEvent;\r
+\r
+ TextLabel text = new TextLabel("Hello Tizen NUI World");\r
+ text.HorizontalAlignment = HorizontalAlignment.Center;\r
+ text.VerticalAlignment = VerticalAlignment.Center;\r
+ text.TextColor = Color.Blue;\r
+ text.PointSize = 12.0f;\r
+ text.HeightResizePolicy = ResizePolicyType.FillToParent;\r
+ text.WidthResizePolicy = ResizePolicyType.FillToParent;\r
+ Window.Instance.GetDefaultLayer().Add(text);\r
+\r
+ Animation animation = new Animation(2000);\r
+ animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(180.0f)), PositionAxis.X), 0, 500);\r
+ animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(0.0f)), PositionAxis.X), 500, 1000);\r
+ animation.Looping = true;\r
+ animation.Play();\r
+ }\r
+\r
+ public void OnKeyEvent(object sender, Window.KeyEventArgs e)\r
+ {\r
+ if (e.Key.State == Key.StateType.Down && (e.Key.KeyPressedName == "XF86Back" || e.Key.KeyPressedName == "Escape"))\r
+ {\r
+ Exit();\r
+ }\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\"/>
+ <Folder Include="res\"/>
+ </ItemGroup>
+
+</Project>
+
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_LAUNCH_02</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_LAUNCH_02" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_LAUNCH_02"
+ exec="Launcher_TC_LAUNCH_02.dll"
+ type="dotnet-nui"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_LAUNCH_02</label>
+ <icon>Launcher_TC_LAUNCH_02.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_LAUNCH_03", "Launcher_TC_LAUNCH_03\Launcher_TC_LAUNCH_03\Launcher_TC_LAUNCH_03.csproj", "{3AAED22E-2432-4EBC-947A-96653C4522B6}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_LAUNCH_03.Tizen", "Launcher_TC_LAUNCH_03\Launcher_TC_LAUNCH_03.Tizen\Launcher_TC_LAUNCH_03.Tizen.csproj", "{99C910E3-F961-497E-8035-61198B776062}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {3AAED22E-2432-4EBC-947A-96653C4522B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {3AAED22E-2432-4EBC-947A-96653C4522B6}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {3AAED22E-2432-4EBC-947A-96653C4522B6}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {3AAED22E-2432-4EBC-947A-96653C4522B6}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {99C910E3-F961-497E-8035-61198B776062}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {99C910E3-F961-497E-8035-61198B776062}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {99C910E3-F961-497E-8035-61198B776062}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {99C910E3-F961-497E-8035-61198B776062}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {D96CEF29-2383-404E-9403-ED6B50CF7820}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_LAUNCH_03\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_LAUNCH_03\Launcher_TC_LAUNCH_03.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_LAUNCH_03.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_LAUNCH_03.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_LAUNCH_03.Tizen"
+ exec="Launcher_TC_LAUNCH_03.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_LAUNCH_03.Tizen</label>
+ <icon>Launcher_TC_LAUNCH_03.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_LAUNCH_03\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_01", "Launcher_TC_PLUGIN_01\Launcher_TC_PLUGIN_01\Launcher_TC_PLUGIN_01.csproj", "{F6508EF2-13EF-427D-8132-2D12E0ADB3BB}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_01.Tizen", "Launcher_TC_PLUGIN_01\Launcher_TC_PLUGIN_01.Tizen\Launcher_TC_PLUGIN_01.Tizen.csproj", "{B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {9E64051C-6D56-4956-885D-239326F4E2B2}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_01\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_01\Launcher_TC_PLUGIN_01.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_01.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_01.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_01.Tizen"
+ exec="Launcher_TC_PLUGIN_01.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PLUGIN_01.Tizen</label>
+ <icon>Launcher_TC_PLUGIN_01.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_01\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>\r
+ <PackageReference Include="HarfBuzzSharp" Version="2.6.1.6" />\r
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />\r
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_02", "Launcher_TC_PLUGIN_02\Launcher_TC_PLUGIN_02\Launcher_TC_PLUGIN_02.csproj", "{9C518569-5F51-4955-9203-0708B8A1FDF2}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_02.Tizen", "Launcher_TC_PLUGIN_02\Launcher_TC_PLUGIN_02.Tizen\Launcher_TC_PLUGIN_02.Tizen.csproj", "{148EA6A3-B680-42D6-A488-CE006E38C07C}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {9C518569-5F51-4955-9203-0708B8A1FDF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {9C518569-5F51-4955-9203-0708B8A1FDF2}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {9C518569-5F51-4955-9203-0708B8A1FDF2}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {9C518569-5F51-4955-9203-0708B8A1FDF2}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {148EA6A3-B680-42D6-A488-CE006E38C07C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {148EA6A3-B680-42D6-A488-CE006E38C07C}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {148EA6A3-B680-42D6-A488-CE006E38C07C}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {148EA6A3-B680-42D6-A488-CE006E38C07C}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {19D98610-7C36-467F-971B-8AAD01AF8A34}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_02\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_02\Launcher_TC_PLUGIN_02.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_02.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_02.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_02.Tizen"
+ exec="Launcher_TC_PLUGIN_02.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PLUGIN_02.Tizen</label>
+ <icon>Launcher_TC_PLUGIN_02.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_02\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="2.80.2" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_03", "Launcher_TC_PLUGIN_03\Launcher_TC_PLUGIN_03\Launcher_TC_PLUGIN_03.csproj", "{ED81372E-4B80-4715-B325-7C1D6885ECD1}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_03.Tizen", "Launcher_TC_PLUGIN_03\Launcher_TC_PLUGIN_03.Tizen\Launcher_TC_PLUGIN_03.Tizen.csproj", "{07A08348-846B-447D-BFBD-9A6AE2B53FC6}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {C554B03F-ABAB-41DE-91CA-97FA29A94D80}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_03\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_03\Launcher_TC_PLUGIN_03.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_03.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_03.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_03.Tizen"
+ exec="Launcher_TC_PLUGIN_03.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PLUGIN_03.Tizen</label>
+ <icon>Launcher_TC_PLUGIN_03.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="false" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_03\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_04", "Launcher_TC_PLUGIN_04\Launcher_TC_PLUGIN_04\Launcher_TC_PLUGIN_04.csproj", "{76BC2CC8-8901-4728-A4B8-B02664F32D14}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_04.Tizen", "Launcher_TC_PLUGIN_04\Launcher_TC_PLUGIN_04.Tizen\Launcher_TC_PLUGIN_04.Tizen.csproj", "{401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {8454B5A7-20C3-4063-A844-5B769DB4D7AA}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_04\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_04\Launcher_TC_PLUGIN_04.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_04.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_04.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_04.Tizen"
+ exec="Launcher_TC_PLUGIN_04.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PLUGIN_04.Tizen</label>
+ <icon>Launcher_TC_PLUGIN_04.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_04\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_05", "Launcher_TC_PLUGIN_05\Launcher_TC_PLUGIN_05\Launcher_TC_PLUGIN_05.csproj", "{CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_05.Tizen", "Launcher_TC_PLUGIN_05\Launcher_TC_PLUGIN_05.Tizen\Launcher_TC_PLUGIN_05.Tizen.csproj", "{661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {FEC87BFF-BD8D-412F-A8BA-FF269E0A498E}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_05\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_05\Launcher_TC_PLUGIN_05.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_05.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_05.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_05.Tizen"
+ exec="Launcher_TC_PLUGIN_05.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PLUGIN_05.Tizen</label>
+ <icon>Launcher_TC_PLUGIN_05.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="false" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_05\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_06", "Launcher_TC_PLUGIN_06\Launcher_TC_PLUGIN_06\Launcher_TC_PLUGIN_06.csproj", "{E789D435-08E8-4DB6-AE83-EB230F767A3D}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_06.Tizen", "Launcher_TC_PLUGIN_06\Launcher_TC_PLUGIN_06.Tizen\Launcher_TC_PLUGIN_06.Tizen.csproj", "{99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {1301661B-A5DD-470E-807C-801472F6440D}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_06\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_06\Launcher_TC_PLUGIN_06.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_06.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_06.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_06.Tizen"
+ exec="Launcher_TC_PLUGIN_06.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PLUGIN_06.Tizen</label>
+ <icon>Launcher_TC_PLUGIN_06.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_06\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_07", "Launcher_TC_PLUGIN_07\Launcher_TC_PLUGIN_07\Launcher_TC_PLUGIN_07.csproj", "{3A871209-5F10-4A4A-97B4-C7459989A510}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_07.Tizen", "Launcher_TC_PLUGIN_07\Launcher_TC_PLUGIN_07.Tizen\Launcher_TC_PLUGIN_07.Tizen.csproj", "{DC077182-F32A-450C-B064-6C76439ADB17}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {3A871209-5F10-4A4A-97B4-C7459989A510}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {3A871209-5F10-4A4A-97B4-C7459989A510}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {3A871209-5F10-4A4A-97B4-C7459989A510}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {3A871209-5F10-4A4A-97B4-C7459989A510}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {DC077182-F32A-450C-B064-6C76439ADB17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {DC077182-F32A-450C-B064-6C76439ADB17}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {DC077182-F32A-450C-B064-6C76439ADB17}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {DC077182-F32A-450C-B064-6C76439ADB17}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {CF255C3C-6DF0-4057-A04A-6FCFBBBEA734}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_07\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_07\Launcher_TC_PLUGIN_07.csproj" />\r
+ </ItemGroup>\r
+ \r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_07.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_07.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_07.Tizen"\r
+ exec="Launcher_TC_PLUGIN_07.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_PLUGIN_07.Tizen</label>\r
+ <icon>Launcher_TC_PLUGIN_07.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="false" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_07\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <PackageReference Include="SkiaSharp" Version="1.68.0" />\r
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_08", "Launcher_TC_PLUGIN_08\Launcher_TC_PLUGIN_08\Launcher_TC_PLUGIN_08.csproj", "{95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PLUGIN_08.Tizen", "Launcher_TC_PLUGIN_08\Launcher_TC_PLUGIN_08.Tizen\Launcher_TC_PLUGIN_08.Tizen.csproj", "{C0505472-2568-4B58-82CA-1B84A6250DFA}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {C0505472-2568-4B58-82CA-1B84A6250DFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {C0505472-2568-4B58-82CA-1B84A6250DFA}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {C0505472-2568-4B58-82CA-1B84A6250DFA}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {C0505472-2568-4B58-82CA-1B84A6250DFA}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {D97B3739-2402-472F-B07F-4E80C012B213}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_08\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_PLUGIN_08\Launcher_TC_PLUGIN_08.csproj" />\r
+ </ItemGroup>\r
+ \r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PLUGIN_08.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PLUGIN_08.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_PLUGIN_08.Tizen"\r
+ exec="Launcher_TC_PLUGIN_08.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_PLUGIN_08.Tizen</label>\r
+ <icon>Launcher_TC_PLUGIN_08.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PLUGIN_08\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <PackageReference Include="SkiaSharp" Version="1.68.0" />\r
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PRELOAD_01", "Launcher_TC_PRELOAD_01\Launcher_TC_PRELOAD_01\Launcher_TC_PRELOAD_01.csproj", "{2B945670-B2E9-437B-B004-2382A5B9CED5}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PRELOAD_01.Tizen", "Launcher_TC_PRELOAD_01\Launcher_TC_PRELOAD_01.Tizen\Launcher_TC_PRELOAD_01.Tizen.csproj", "{D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {2B945670-B2E9-437B-B004-2382A5B9CED5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {2B945670-B2E9-437B-B004-2382A5B9CED5}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {2B945670-B2E9-437B-B004-2382A5B9CED5}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {2B945670-B2E9-437B-B004-2382A5B9CED5}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {305680BE-E1A2-463F-B276-FE8716181CD3}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PRELOAD_01\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_PRELOAD_01\Launcher_TC_PRELOAD_01.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PRELOAD_01.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PRELOAD_01.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PRELOAD_01.Tizen"
+ exec="Launcher_TC_PRELOAD_01.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PRELOAD_01.Tizen</label>
+ <icon>Launcher_TC_PRELOAD_01.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_PRELOAD_01\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PRELOAD_02", "Launcher_TC_PRELOAD_02\Launcher_TC_PRELOAD_02.csproj", "{BD074590-8511-4472-ACA4-90E2BEBBF183}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {BD074590-8511-4472-ACA4-90E2BEBBF183}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {BD074590-8511-4472-ACA4-90E2BEBBF183}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {BD074590-8511-4472-ACA4-90E2BEBBF183}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {BD074590-8511-4472-ACA4-90E2BEBBF183}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {E64C74AD-2967-4198-9F5A-5E8D2404F4EF}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Tizen.NUI;\r
+using Tizen.NUI.BaseComponents;\r
+\r
+namespace Launcher_TC_PRELOAD_02\r
+{\r
+ class Program : NUIApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+ Initialize();\r
+ }\r
+\r
+ void Initialize()\r
+ {\r
+ Window.Instance.KeyEvent += OnKeyEvent;\r
+\r
+ TextLabel text = new TextLabel("Hello Tizen NUI World");\r
+ text.HorizontalAlignment = HorizontalAlignment.Center;\r
+ text.VerticalAlignment = VerticalAlignment.Center;\r
+ text.TextColor = Color.Blue;\r
+ text.PointSize = 12.0f;\r
+ text.HeightResizePolicy = ResizePolicyType.FillToParent;\r
+ text.WidthResizePolicy = ResizePolicyType.FillToParent;\r
+ Window.Instance.GetDefaultLayer().Add(text);\r
+\r
+ Animation animation = new Animation(2000);\r
+ animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(180.0f)), PositionAxis.X), 0, 500);\r
+ animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(0.0f)), PositionAxis.X), 500, 1000);\r
+ animation.Looping = true;\r
+ animation.Play();\r
+ }\r
+\r
+ public void OnKeyEvent(object sender, Window.KeyEventArgs e)\r
+ {\r
+ if (e.Key.State == Key.StateType.Down && (e.Key.KeyPressedName == "XF86Back" || e.Key.KeyPressedName == "Escape"))\r
+ {\r
+ Exit();\r
+ }\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\"/>
+ <Folder Include="res\"/>
+ </ItemGroup>
+
+</Project>
+
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_PRELOAD_02</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_PRELOAD_02" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_PRELOAD_02"
+ exec="Launcher_TC_PRELOAD_02.dll"
+ type="dotnet-nui"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_PRELOAD_02</label>
+ <icon>Launcher_TC_PRELOAD_02.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_01", "Launcher_TC_TAC_01\Launcher_TC_TAC_01\Launcher_TC_TAC_01.csproj", "{80B17266-31EE-46A8-9379-37FBEF7369D2}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_01.Tizen", "Launcher_TC_TAC_01\Launcher_TC_TAC_01.Tizen\Launcher_TC_TAC_01.Tizen.csproj", "{107E0022-C3C0-4A67-BF04-7DA457B182DF}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {80B17266-31EE-46A8-9379-37FBEF7369D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {80B17266-31EE-46A8-9379-37FBEF7369D2}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {80B17266-31EE-46A8-9379-37FBEF7369D2}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {80B17266-31EE-46A8-9379-37FBEF7369D2}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {7483B6B3-2B1C-4A4D-9E16-3DBE686F7876}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_01\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TAC_01\Launcher_TC_TAC_01.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_01.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_01.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_01.Tizen"
+ exec="Launcher_TC_TAC_01.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TAC_01.Tizen</label>
+ <icon>Launcher_TC_TAC_01.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_01\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_02", "Launcher_TC_TAC_02\Launcher_TC_TAC_02\Launcher_TC_TAC_02.csproj", "{D3B10D61-E2A7-4702-98F3-A3ABF42BC301}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_02.Tizen", "Launcher_TC_TAC_02\Launcher_TC_TAC_02.Tizen\Launcher_TC_TAC_02.Tizen.csproj", "{806F069F-047F-4E11-B952-6687F57B9CEE}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {806F069F-047F-4E11-B952-6687F57B9CEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {806F069F-047F-4E11-B952-6687F57B9CEE}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {806F069F-047F-4E11-B952-6687F57B9CEE}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {806F069F-047F-4E11-B952-6687F57B9CEE}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {1D95A53B-1395-4392-94E3-2C311C652A2C}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_02\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_TAC_02\Launcher_TC_TAC_02.csproj" />\r
+ </ItemGroup>\r
+ \r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_02.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_00.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_00.Tizen"\r
+ exec="Launcher_TC_TAC_02.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TAC_02.Tizen</label>\r
+ <icon>Launcher_TC_TAC_02.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_02\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ Console.WriteLine(Newtonsoft.Json.Required.Default);\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <PackageReference Include="Newtonsoft.Json" Version="12.0.1" />\r
+ <PackageReference Include="Xamarin.Forms" Version="4.8.0.1364" />\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_03", "Launcher_TC_TAC_03\Launcher_TC_TAC_03\Launcher_TC_TAC_03.csproj", "{7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_03.Tizen", "Launcher_TC_TAC_03\Launcher_TC_TAC_03.Tizen\Launcher_TC_TAC_03.Tizen.csproj", "{AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {C360A99A-0EB8-4DC0-A1C2-23AA68849200}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_03\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TAC_03\Launcher_TC_TAC_03.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_03.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_00.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_00.Tizen"
+ exec="Launcher_TC_TAC_03.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TAC_03.Tizen</label>
+ <icon>Launcher_TC_TAC_03.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_03\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ Console.WriteLine(SQLite.SQLiteOpenFlags.ReadOnly);\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="sqlite-net-base" Version="1.7.335" />
+ <PackageReference Include="Xamarin.Forms" Version="4.8.0.1687" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_04", "Launcher_TC_TAC_04\Launcher_TC_TAC_04\Launcher_TC_TAC_04.csproj", "{249C17CA-2BCB-41A0-864C-FDC776D51808}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_04.Tizen", "Launcher_TC_TAC_04\Launcher_TC_TAC_04.Tizen\Launcher_TC_TAC_04.Tizen.csproj", "{2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {249C17CA-2BCB-41A0-864C-FDC776D51808}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {249C17CA-2BCB-41A0-864C-FDC776D51808}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {249C17CA-2BCB-41A0-864C-FDC776D51808}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {249C17CA-2BCB-41A0-864C-FDC776D51808}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {D18F3EF5-63A2-489D-A423-8FFA8A80A6D8}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_04\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ <AssemblyName>Launcher_TC_TAC_04.Tizen</AssemblyName>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_TAC_04\Launcher_TC_TAC_04.csproj" />\r
+ </ItemGroup>\r
+ \r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_04.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_00.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_00.Tizen"\r
+ exec="Launcher_TC_TAC_04.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TAC_04.Tizen</label>\r
+ <icon>Launcher_TC_TAC_04.Tizen.png</icon>\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_04\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <PackageReference Include="Xamarin.Forms" Version="4.8.0.1364" />\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_05", "Launcher_TC_TAC_05\Launcher_TC_TAC_05\Launcher_TC_TAC_05.csproj", "{8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_05.Tizen", "Launcher_TC_TAC_05\Launcher_TC_TAC_05.Tizen\Launcher_TC_TAC_05.Tizen.csproj", "{0B166CA4-C383-494C-BF26-01738FB3B547}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {0B166CA4-C383-494C-BF26-01738FB3B547}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {0B166CA4-C383-494C-BF26-01738FB3B547}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {0B166CA4-C383-494C-BF26-01738FB3B547}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {0B166CA4-C383-494C-BF26-01738FB3B547}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {04098CBE-84EA-4401-84FF-54563C679ACE}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_05\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TAC_05\Launcher_TC_TAC_05.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_05.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_05.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_05.Tizen"
+ exec="Launcher_TC_TAC_05.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TAC_05.Tizen</label>
+ <icon>Launcher_TC_TAC_05.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_05\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="5.0.0.1558-pre3" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_06", "Launcher_TC_TAC_06\Launcher_TC_TAC_06\Launcher_TC_TAC_06.csproj", "{782131F4-4B52-491B-A0CA-20F14B619FB2}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_06.Tizen", "Launcher_TC_TAC_06\Launcher_TC_TAC_06.Tizen\Launcher_TC_TAC_06.Tizen.csproj", "{C3229CBF-CC4E-45DE-B4CF-2E99336EF122}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {782131F4-4B52-491B-A0CA-20F14B619FB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {782131F4-4B52-491B-A0CA-20F14B619FB2}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {782131F4-4B52-491B-A0CA-20F14B619FB2}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {782131F4-4B52-491B-A0CA-20F14B619FB2}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {823DC481-804A-4D8B-BF0A-1CF3B8005147}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_06\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TAC_06\Launcher_TC_TAC_06.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_06.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_06.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_06.Tizen"
+ exec="Launcher_TC_TAC_06.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TAC_06.Tizen</label>
+ <icon>Launcher_TC_TAC_06.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_06\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="5.0.0.1558-pre3" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_07", "Launcher_TC_TAC_07\Launcher_TC_TAC_07\Launcher_TC_TAC_07.csproj", "{04292B53-6FAB-495D-9F23-1B63BA94E127}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_07.Tizen", "Launcher_TC_TAC_07\Launcher_TC_TAC_07.Tizen\Launcher_TC_TAC_07.Tizen.csproj", "{2820BE69-BF0C-4387-A441-6142701589A8}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {04292B53-6FAB-495D-9F23-1B63BA94E127}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {04292B53-6FAB-495D-9F23-1B63BA94E127}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {04292B53-6FAB-495D-9F23-1B63BA94E127}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {04292B53-6FAB-495D-9F23-1B63BA94E127}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {2820BE69-BF0C-4387-A441-6142701589A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {2820BE69-BF0C-4387-A441-6142701589A8}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {2820BE69-BF0C-4387-A441-6142701589A8}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {2820BE69-BF0C-4387-A441-6142701589A8}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {75BED149-EB49-4806-A8C0-C7782686E0E7}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_07\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TAC_07\Launcher_TC_TAC_07.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_07.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_07.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_07.Tizen"
+ exec="Launcher_TC_TAC_07.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TAC_07.Tizen</label>
+ <icon>Launcher_TC_TAC_07.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_07\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.4.0.991864" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_08", "Launcher_TC_TAC_08\Launcher_TC_TAC_08\Launcher_TC_TAC_08.csproj", "{8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_08.Tizen", "Launcher_TC_TAC_08\Launcher_TC_TAC_08.Tizen\Launcher_TC_TAC_08.Tizen.csproj", "{CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {3F409E87-6A8E-4D4C-A17F-D486175202F3}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_08\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_TAC_08\Launcher_TC_TAC_08.csproj" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <Reference Include="XSF">\r
+ <HintPath>..\..\XSF.dll</HintPath>\r
+ </Reference>\r
+ </ItemGroup>\r
+\r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_08.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_08.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_08.Tizen"\r
+ exec="Launcher_TC_TAC_08.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TAC_08.Tizen</label>\r
+ <icon>Launcher_TC_TAC_08.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_08\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Reference Include="XSF">\r
+ <HintPath>..\..\XSF.dll</HintPath>\r
+ </Reference>\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_09", "Launcher_TC_TAC_09\Launcher_TC_TAC_09\Launcher_TC_TAC_09.csproj", "{E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_09.Tizen", "Launcher_TC_TAC_09\Launcher_TC_TAC_09.Tizen\Launcher_TC_TAC_09.Tizen.csproj", "{67E7F149-02ED-4524-A30D-0823FE2FE249}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {67E7F149-02ED-4524-A30D-0823FE2FE249}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {67E7F149-02ED-4524-A30D-0823FE2FE249}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {67E7F149-02ED-4524-A30D-0823FE2FE249}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {67E7F149-02ED-4524-A30D-0823FE2FE249}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {DE31CD48-4117-4155-AFAB-6AB4C3398A59}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_09\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_TAC_09\Launcher_TC_TAC_09.csproj" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <Reference Include="XSF">\r
+ <HintPath>..\..\XSF.dll</HintPath>\r
+ </Reference>\r
+ </ItemGroup>\r
+\r
+\r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_09.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_09.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_09.Tizen"\r
+ exec="Launcher_TC_TAC_09.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TAC_09.Tizen</label>\r
+ <icon>Launcher_TC_TAC_09.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_09\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Reference Include="XSF">\r
+ <HintPath>..\..\XSF.dll</HintPath>\r
+ </Reference>\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_10", "Launcher_TC_TAC_10\Launcher_TC_TAC_10\Launcher_TC_TAC_10.csproj", "{93CD0435-1F50-4D09-AD17-2BF30D7780E3}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_10.Tizen", "Launcher_TC_TAC_10\Launcher_TC_TAC_10.Tizen\Launcher_TC_TAC_10.Tizen.csproj", "{3347C2A1-50B1-46A1-B8C5-113ADA917A12}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {F34C2A86-62B9-4C06-B68A-D2A1FE3C0E6C}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_10\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_TAC_10\Launcher_TC_TAC_10.csproj" />\r
+ </ItemGroup>\r
+ \r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_10.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_10.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_10.Tizen"\r
+ exec="Launcher_TC_TAC_10.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TAC_10.Tizen</label>\r
+ <icon>Launcher_TC_TAC_10.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_10\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <PackageReference Include="Google.Apis" Version="1.49.0" />\r
+ <PackageReference Include="Xamarin.Forms" Version="4.8.0.1560" />\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_11", "Launcher_TC_TAC_11\Launcher_TC_TAC_11\Launcher_TC_TAC_11.csproj", "{9CDDBD51-36F7-4F7B-A658-FF14B6D68366}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TAC_11.Tizen", "Launcher_TC_TAC_11\Launcher_TC_TAC_11.Tizen\Launcher_TC_TAC_11.Tizen.csproj", "{DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {1877E88F-36A3-48C1-8BB8-1F0BD3D6A352}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_11\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_TAC_11\Launcher_TC_TAC_11.csproj" />\r
+ </ItemGroup>\r
+ \r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TAC_11.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TAC_11.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TAC_11.Tizen"\r
+ exec="Launcher_TC_TAC_11.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TAC_11.Tizen</label>\r
+ <icon>Launcher_TC_TAC_11.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TAC_11\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <PackageReference Include="CommandLineParser" Version="2.6.0" />\r
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_01", "Launcher_TC_TLC_01\Launcher_TC_TLC_01\Launcher_TC_TLC_01.csproj", "{6B793DAD-3F2F-43E2-8913-A903879E1971}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_01.Tizen", "Launcher_TC_TLC_01\Launcher_TC_TLC_01.Tizen\Launcher_TC_TLC_01.Tizen.csproj", "{459DA443-6A75-4BFB-A9B8-C92549FEBABB}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {6B793DAD-3F2F-43E2-8913-A903879E1971}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {6B793DAD-3F2F-43E2-8913-A903879E1971}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {6B793DAD-3F2F-43E2-8913-A903879E1971}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {6B793DAD-3F2F-43E2-8913-A903879E1971}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {12D3EC10-DB2E-414F-9F48-21791C073696}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_01\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_01\Launcher_TC_TLC_01.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_01.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_01.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_01.Tizen"
+ exec="Launcher_TC_TLC_01.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_01.Tizen</label>
+ <icon>Launcher_TC_TLC_01.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_01\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new SkiaSharp.SKPaint();\r
+\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="1.68.0" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_02", "Launcher_TC_TLC_02\Launcher_TC_TLC_02\Launcher_TC_TLC_02.csproj", "{605F26EF-CFBB-4BA9-9F13-E83E986DC83F}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_02.Tizen", "Launcher_TC_TLC_02\Launcher_TC_TLC_02.Tizen\Launcher_TC_TLC_02.Tizen.csproj", "{8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {CAD72548-CCA1-40FB-8485-F28442EC6248}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_02\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_02\Launcher_TC_TLC_02.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_02.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_00.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_00.Tizen"
+ exec="Launcher_TC_TLC_02.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_02.Tizen</label>
+ <icon>Launcher_TC_TLC_02.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_02\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new SkiaSharp.SKPaint();\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="1.68.3" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_03", "Launcher_TC_TLC_03\Launcher_TC_TLC_03\Launcher_TC_TLC_03.csproj", "{F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_03.Tizen", "Launcher_TC_TLC_03\Launcher_TC_TLC_03.Tizen\Launcher_TC_TLC_03.Tizen.csproj", "{FC034C0C-7E1A-4370-8D7B-F631606C963C}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {8BFEB9F6-FF37-421C-8901-E7965E09A66D}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_03\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_03\Launcher_TC_TLC_03.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_03.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_00.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_00.Tizen"
+ exec="Launcher_TC_TLC_03.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_03.Tizen</label>
+ <icon>Launcher_TC_TLC_03.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_03\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new SkiaSharp.SKPaint();\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="2.80.0" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_04", "Launcher_TC_TLC_04\Launcher_TC_TLC_04\Launcher_TC_TLC_04.csproj", "{1B82F952-B88B-43E9-B0F0-AF16381512E8}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_04.Tizen", "Launcher_TC_TLC_04\Launcher_TC_TLC_04.Tizen\Launcher_TC_TLC_04.Tizen.csproj", "{1C03DB38-CCE0-40F5-94EC-123343D147DA}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {DB85B0EF-917D-48D1-9338-E99425B2F474}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_04\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_04\Launcher_TC_TLC_04.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_04.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_00.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_00.Tizen"
+ exec="Launcher_TC_TLC_04.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_04.Tizen</label>
+ <icon>Launcher_TC_TLC_04.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_04\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new SkiaSharp.SKPaint();\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="1.68.2" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_05", "Launcher_TC_TLC_05\Launcher_TC_TLC_05\Launcher_TC_TLC_05.csproj", "{909FF077-F45F-424E-8AF2-12BFA15DCB41}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_05.Tizen", "Launcher_TC_TLC_05\Launcher_TC_TLC_05.Tizen\Launcher_TC_TLC_05.Tizen.csproj", "{69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {F0591A38-ADD3-4D9E-9E95-B19FCB99B88E}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_05\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_05\Launcher_TC_TLC_05.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_05.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_00.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_00.Tizen"
+ exec="Launcher_TC_TLC_05.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_05.Tizen</label>
+ <icon>Launcher_TC_TLC_05.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_05\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new SkiaSharp.SKPaint();\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="2.80.2" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_06", "Launcher_TC_TLC_06\Launcher_TC_TLC_06\Launcher_TC_TLC_06.csproj", "{2020BCA3-26EC-4E6D-838A-804C1581D88C}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_06.Tizen", "Launcher_TC_TLC_06\Launcher_TC_TLC_06.Tizen\Launcher_TC_TLC_06.Tizen.csproj", "{71B68F60-48E7-49F6-9C8D-B5CEE4066431}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {5FE93CF6-228E-4D37-B2B7-0FA817571408}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_06\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_06\Launcher_TC_TLC_06.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_06.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_00.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_00.Tizen"
+ exec="Launcher_TC_TLC_06.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_06.Tizen</label>
+ <icon>Launcher_TC_TLC_06.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_06\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new SkiaSharp.SKPaint();\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="2.80.2" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_07", "Launcher_TC_TLC_07\Launcher_TC_TLC_07\Launcher_TC_TLC_07.csproj", "{4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_07.Tizen", "Launcher_TC_TLC_07\Launcher_TC_TLC_07.Tizen\Launcher_TC_TLC_07.Tizen.csproj", "{F9911424-6E1C-4369-BD21-0474426CDAF4}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {F9911424-6E1C-4369-BD21-0474426CDAF4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {F9911424-6E1C-4369-BD21-0474426CDAF4}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {F9911424-6E1C-4369-BD21-0474426CDAF4}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {F9911424-6E1C-4369-BD21-0474426CDAF4}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {B98F1206-4E78-4E74-9F2F-15BA1FE8F160}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_07\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_07\Launcher_TC_TLC_07.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_07.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_07.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_07.Tizen"
+ exec="Launcher_TC_TLC_07.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_07.Tizen</label>
+ <icon>Launcher_TC_TLC_07.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_07\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new HarfBuzzSharp.Buffer();\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="HarfBuzzSharp" Version="2.6.1.7" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_08", "Launcher_TC_TLC_08\Launcher_TC_TLC_08\Launcher_TC_TLC_08.csproj", "{0FC778E0-9A45-4E63-B950-BC39485A6A40}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_08.Tizen", "Launcher_TC_TLC_08\Launcher_TC_TLC_08.Tizen\Launcher_TC_TLC_08.Tizen.csproj", "{D1C00627-5EA6-4349-B719-BACF704F16DB}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {D1C00627-5EA6-4349-B719-BACF704F16DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {D1C00627-5EA6-4349-B719-BACF704F16DB}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {D1C00627-5EA6-4349-B719-BACF704F16DB}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {D1C00627-5EA6-4349-B719-BACF704F16DB}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {6E3F6E8B-8C3C-466F-B5C7-D3F83FB2A826}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_08\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_08\Launcher_TC_TLC_08.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_08.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_08.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_08.Tizen"
+ exec="Launcher_TC_TLC_08.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TLC_08.Tizen</label>
+ <icon>Launcher_TC_TLC_08.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_08\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new HarfBuzzSharp.Buffer();\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="HarfBuzzSharp" Version="2.6.1.7" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_09", "Launcher_TC_TLC_09\Launcher_TC_TLC_09\Launcher_TC_TLC_09.csproj", "{39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_09.Tizen", "Launcher_TC_TLC_09\Launcher_TC_TLC_09.Tizen\Launcher_TC_TLC_09.Tizen.csproj", "{D8AA3208-D137-43F5-A7A8-3718B1F63EEB}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {983F299A-4DEB-413A-AA72-A3A86B9DAC51}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_09\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TLC_09\Launcher_TC_TLC_09.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_09.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_09.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_09.Tizen"\r
+ exec="Launcher_TC_TLC_09.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TLC_09.Tizen</label>\r
+ <icon>Launcher_TC_TLC_09.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_09\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ new SkiaSharp.SKPaint();\r
+\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="1.68.1" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_10", "Launcher_TC_TLC_10\Launcher_TC_TLC_10\Launcher_TC_TLC_10.csproj", "{499EB236-1E76-4444-B02A-94880C167B1E}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TLC_10.Tizen", "Launcher_TC_TLC_10\Launcher_TC_TLC_10.Tizen\Launcher_TC_TLC_10.Tizen.csproj", "{19A5D67D-A109-499E-BD3B-6935E7E13C96}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {499EB236-1E76-4444-B02A-94880C167B1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {499EB236-1E76-4444-B02A-94880C167B1E}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {499EB236-1E76-4444-B02A-94880C167B1E}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {499EB236-1E76-4444-B02A-94880C167B1E}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {7C1B668A-F64B-4D35-BF27-C1B8AEB8F461}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_10\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <OutputType>Exe</OutputType>\r
+ <TargetFramework>tizen70</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+ <DebugType>portable</DebugType>\r
+ </PropertyGroup>\r
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+ <DebugType>None</DebugType>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <Folder Include="lib\" />\r
+ <Folder Include="res\" />\r
+ </ItemGroup>\r
+\r
+ \r
+ <ItemGroup>\r
+ <ProjectReference Include="..\Launcher_TC_TLC_10\Launcher_TC_TLC_10.csproj" />\r
+ </ItemGroup>\r
+ \r
+\r
+</Project>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TLC_10.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TLC_10.Tizen" version="1.0.0">\r
+ <profile name="common" />\r
+ <ui-application appid="org.tizen.example.Launcher_TC_TLC_10.Tizen"\r
+ exec="Launcher_TC_TLC_10.Tizen.dll"\r
+ type="dotnet"\r
+ multiple="false"\r
+ taskmanage="true"\r
+ nodisplay="false"\r
+ launch_mode="single"\r
+ api-version="6">\r
+ <label>Launcher_TC_TLC_10.Tizen</label>\r
+ <icon>Launcher_TC_TLC_10.Tizen.png</icon>\r
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />\r
+ </ui-application>\r
+</manifest>\r
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TLC_10\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">\r
+\r
+ <PropertyGroup>\r
+ <TargetFramework>netstandard2.0</TargetFramework>\r
+ </PropertyGroup>\r
+\r
+ <ItemGroup>\r
+ <PackageReference Include="FFmpegBindings" Version="4.3.1" />\r
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />\r
+ </ItemGroup>\r
+\r
+</Project>\r
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_01", "Launcher_TC_TOOL_01\Launcher_TC_TOOL_01\Launcher_TC_TOOL_01.csproj", "{0D04DD43-87AB-4168-B32E-2A16C542D033}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_01.Tizen", "Launcher_TC_TOOL_01\Launcher_TC_TOOL_01.Tizen\Launcher_TC_TOOL_01.Tizen.csproj", "{A974F173-7CD5-43B7-9147-5B662E58D612}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {0D04DD43-87AB-4168-B32E-2A16C542D033}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {0D04DD43-87AB-4168-B32E-2A16C542D033}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {0D04DD43-87AB-4168-B32E-2A16C542D033}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {0D04DD43-87AB-4168-B32E-2A16C542D033}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {A974F173-7CD5-43B7-9147-5B662E58D612}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {A974F173-7CD5-43B7-9147-5B662E58D612}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {A974F173-7CD5-43B7-9147-5B662E58D612}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {A974F173-7CD5-43B7-9147-5B662E58D612}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {98F463B3-5E69-4E7D-A112-BED3B89AB4A2}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_01\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TOOL_01\Launcher_TC_TOOL_01.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TOOL_01.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TOOL_01.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TOOL_01.Tizen"
+ exec="Launcher_TC_TOOL_01.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TOOL_01.Tizen</label>
+ <icon>Launcher_TC_TOOL_01.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_01\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_02", "Launcher_TC_TOOL_02\Launcher_TC_TOOL_02\Launcher_TC_TOOL_02.csproj", "{F53AB79C-31BA-4D0C-A320-88CD57215B2B}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_02.Tizen", "Launcher_TC_TOOL_02\Launcher_TC_TOOL_02.Tizen\Launcher_TC_TOOL_02.Tizen.csproj", "{16CD4607-F9E0-4760-9D4A-849FE2D4195C}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {09EFCDAD-4A85-4266-9BB0-39A54F68FADA}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_02\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TOOL_02\Launcher_TC_TOOL_02.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TOOL_02.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TOOL_02.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TOOL_02.Tizen"
+ exec="Launcher_TC_TOOL_02.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TOOL_02.Tizen</label>
+ <icon>Launcher_TC_TOOL_02.Tizen.png</icon>
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_02\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_03", "Launcher_TC_TOOL_03\Launcher_TC_TOOL_03\Launcher_TC_TOOL_03.csproj", "{26C4D738-3E35-45F0-9E51-5E5EC24ED65A}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_03.Tizen", "Launcher_TC_TOOL_03\Launcher_TC_TOOL_03.Tizen\Launcher_TC_TOOL_03.Tizen.csproj", "{DEA7B383-6735-487B-8CBB-C0BF1155ED55}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {74DA2BD6-374C-4B7C-BDFD-CA252EC204C3}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_03\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TOOL_03\Launcher_TC_TOOL_03.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TOOL_03.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TOOL_03.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TOOL_03.Tizen"
+ exec="Launcher_TC_TOOL_03.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TOOL_03.Tizen</label>
+ <icon>Launcher_TC_TOOL_03.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_03\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_04", "Launcher_TC_TOOL_04\Launcher_TC_TOOL_04\Launcher_TC_TOOL_04.csproj", "{BE364F9B-A2A9-4FC3-8468-C3312A11B018}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_04.Tizen", "Launcher_TC_TOOL_04\Launcher_TC_TOOL_04.Tizen\Launcher_TC_TOOL_04.Tizen.csproj", "{853E5727-7CB9-4815-92CF-02322FCD6834}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {853E5727-7CB9-4815-92CF-02322FCD6834}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {853E5727-7CB9-4815-92CF-02322FCD6834}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {853E5727-7CB9-4815-92CF-02322FCD6834}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {853E5727-7CB9-4815-92CF-02322FCD6834}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {7BEDF634-D52A-44F1-BB53-BAC50D17A6C2}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_04\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TOOL_04\Launcher_TC_TOOL_04.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TOOL_04.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TOOL_04.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TOOL_04.Tizen"
+ exec="Launcher_TC_TOOL_04.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TOOL_04.Tizen</label>
+ <icon>Launcher_TC_TOOL_04.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_04\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_05", "Launcher_TC_TOOL_05\Launcher_TC_TOOL_05\Launcher_TC_TOOL_05.csproj", "{5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_05.Tizen", "Launcher_TC_TOOL_05\Launcher_TC_TOOL_05.Tizen\Launcher_TC_TOOL_05.Tizen.csproj", "{ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {4F9F1520-90D9-48EC-A37A-DDB6CC4DC85E}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_05\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TOOL_05\Launcher_TC_TOOL_05.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TOOL_05.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TOOL_05.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TOOL_05.Tizen"
+ exec="Launcher_TC_TOOL_05.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TOOL_05.Tizen</label>
+ <icon>Launcher_TC_TOOL_05.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_05\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_06", "Launcher_TC_TOOL_06\Launcher_TC_TOOL_06\Launcher_TC_TOOL_06.csproj", "{AD9D5587-07CA-4FE1-A281-E62B2330C573}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_06.Tizen", "Launcher_TC_TOOL_06\Launcher_TC_TOOL_06.Tizen\Launcher_TC_TOOL_06.Tizen.csproj", "{3B891117-C14A-4C62-B9CB-F0E16B69DAD9}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {B0790BFA-1947-4041-A096-A78291C2FA40}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_06\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TOOL_06\Launcher_TC_TOOL_06.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TOOL_06.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TOOL_06.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TOOL_06.Tizen"
+ exec="Launcher_TC_TOOL_06.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TOOL_06.Tizen</label>
+ <icon>Launcher_TC_TOOL_06.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_06\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 16\r
+VisualStudioVersion = 16.0.29613.14\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_07", "Launcher_TC_TOOL_07\Launcher_TC_TOOL_07\Launcher_TC_TOOL_07.csproj", "{304EFEAC-3E07-4A45-899E-1C73370684CE}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_TOOL_07.Tizen", "Launcher_TC_TOOL_07\Launcher_TC_TOOL_07.Tizen\Launcher_TC_TOOL_07.Tizen.csproj", "{31327CA8-98A1-405E-918F-69D6C54907DC}"\r
+EndProject\r
+Global\r
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+ Debug|Any CPU = Debug|Any CPU\r
+ Release|Any CPU = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+ {304EFEAC-3E07-4A45-899E-1C73370684CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {304EFEAC-3E07-4A45-899E-1C73370684CE}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {304EFEAC-3E07-4A45-899E-1C73370684CE}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {304EFEAC-3E07-4A45-899E-1C73370684CE}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ {31327CA8-98A1-405E-918F-69D6C54907DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {31327CA8-98A1-405E-918F-69D6C54907DC}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {31327CA8-98A1-405E-918F-69D6C54907DC}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {31327CA8-98A1-405E-918F-69D6C54907DC}.Release|Any CPU.Build.0 = Release|Any CPU\r
+ EndGlobalSection\r
+ GlobalSection(SolutionProperties) = preSolution\r
+ HideSolutionNode = FALSE\r
+ EndGlobalSection\r
+ GlobalSection(ExtensibilityGlobals) = postSolution\r
+ SolutionGuid = {56F3798D-51A6-4A26-880A-4A29789CCADB}\r
+ EndGlobalSection\r
+EndGlobal\r
--- /dev/null
+using System;\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_07\r
+{\r
+ class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication\r
+ {\r
+ protected override void OnCreate()\r
+ {\r
+ base.OnCreate();\r
+\r
+ LoadApplication(new App());\r
+ }\r
+\r
+ static void Main(string[] args)\r
+ {\r
+ var app = new Program();\r
+ Forms.Init(app);\r
+ app.Run(args);\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>tizen70</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugType>portable</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>None</DebugType>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Folder Include="lib\" />
+ <Folder Include="res\" />
+ </ItemGroup>
+
+
+ <ItemGroup>
+ <ProjectReference Include="..\Launcher_TC_TOOL_07\Launcher_TC_TOOL_07.csproj" />
+ </ItemGroup>
+
+
+</Project>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+ <PropertyGroup>\r
+ <ActiveDebugProfile>Launcher_TC_TOOL_07.Tizen</ActiveDebugProfile>\r
+ </PropertyGroup>\r
+</Project>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns="http://tizen.org/ns/packages" api-version="5.5" package="org.tizen.example.Launcher_TC_TOOL_07.Tizen" version="1.0.0">
+ <profile name="common" />
+ <ui-application appid="org.tizen.example.Launcher_TC_TOOL_07.Tizen"
+ exec="Launcher_TC_TOOL_07.Tizen.dll"
+ type="dotnet"
+ multiple="false"
+ taskmanage="true"
+ nodisplay="false"
+ launch_mode="single"
+ api-version="6">
+ <label>Launcher_TC_TOOL_07.Tizen</label>
+ <icon>Launcher_TC_TOOL_07.Tizen.png</icon>
+ <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
+ <metadata key="http://tizen.org/metadata/prefer_nuget_cache" value="true" />
+ </ui-application>
+</manifest>
--- /dev/null
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+\r
+using Xamarin.Forms;\r
+\r
+namespace Launcher_TC_TOOL_07\r
+{\r
+ public class App : Application\r
+ {\r
+ public App()\r
+ {\r
+ // The root page of your application\r
+ MainPage = new ContentPage\r
+ {\r
+ Content = new StackLayout\r
+ {\r
+ VerticalOptions = LayoutOptions.Center,\r
+ Children = {\r
+ new Label {\r
+ HorizontalTextAlignment = TextAlignment.Center,\r
+ Text = "Welcome to Xamarin Forms!"\r
+ }\r
+ }\r
+ }\r
+ };\r
+ }\r
+\r
+ protected override void OnStart()\r
+ {\r
+ // Handle when your app starts\r
+ }\r
+\r
+ protected override void OnSleep()\r
+ {\r
+ // Handle when your app sleeps\r
+ }\r
+\r
+ protected override void OnResume()\r
+ {\r
+ // Handle when your app resumes\r
+ }\r
+ }\r
+}\r
--- /dev/null
+<Project Sdk="Tizen.NET.Sdk/1.1.5">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SkiaSharp" Version="2.80.2" />
+ <PackageReference Include="Xamarin.Forms" Version="4.6.0.967" />
+ </ItemGroup>
+
+</Project>
--- /dev/null
+# Test Case for dotnet-launcher - Build(.tpk)
+
+Must be run(```./BuildTPK.py```) at least once.
+
+### Usage
+
+* Build(.tpk) all applications
+```
+launcher/tests/Apps$ ./BuildTPK.py
+Build complete : org.tizen.example.Launcher_TC_AOT_01.Tizen-1.0.0.tpk
+Build complete : org.tizen.example.Launcher_TC_AOT_02.Tizen-1.0.0.tpk
+...
+Build complete : org.tizen.example.Launcher_TC_TOOL_07.Tizen-1.0.0.tpk
+```
+
+* Rebuild(.tpk) all applications
+
+ Delete all previously built tpks.
+```
+launcher/tests/Apps$ ./BuildTPK.py -r
+Build complete : org.tizen.example.Launcher_TC_AOT_01.Tizen-1.0.0.tpk
+Build complete : org.tizen.example.Launcher_TC_AOT_02.Tizen-1.0.0.tpk
+...
+Build complete : org.tizen.example.Launcher_TC_TOOL_07.Tizen-1.0.0.tpk
+```
+
+* Build(.tpk) the specified application
+
+ Build only for specific solutions(.sln).
+```
+launcher/tests/Apps$ ./BuildTPK.py Launcher_TC_AOT_01/Launcher_TC_AOT_01.sln Launcher_TC_TAC_01/Launcher_TC_TAC_01.sln
+Build complete : org.tizen.example.Launcher_TC_AOT_01.Tizen-1.0.0.tpk
+Build complete : org.tizen.example.Launcher_TC_TAC_01.Tizen-1.0.0.tpk
+```
+
+* Create a new test application
+
+ Create a project in ```launcher/test/Apps/``` folder. And the solution name is generated in the same format as **Launcher_TC_{Module_Name}_{Number}**.
+
+### Description(Apps)
+* AOT
+
+ Apps(.sln) | PackageID | prefer_dotnet_aot | prefer_nuget_cache | Nuget
+--------------------|--------------------------------------------|-------------------|--------------------|--------------------------|
+ Launcher_TC_AOT_01 | org.tizen.example.Launcher_TC_AOT_01.Tizen | X | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_AOT_02 | org.tizen.example.Launcher_TC_AOT_02.Tizen | True | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_AOT_03 | org.tizen.example.Launcher_TC_AOT_03.Tizen | True | X | Xamarin.Forms(4.6.0.967)
+
+* LAUNCH
+
+ Apps(.sln) | PackageID | prefer_dotnet_aot | prefer_nuget_cache | Nuget
+-----------------------|-----------------------------------------------|-------------------|--------------------|--------------------------|
+ Launcher_TC_LAUNCH_01 | org.tizen.example.Launcher_TC_LAUNCH_01.Tizen | X | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_LAUNCH_02 | org.tizen.example.Launcher_TC_LAUNCH_02 | X | X | -
+ Launcher_TC_LAUNCH_03 | org.tizen.example.Launcher_TC_LAUNCH_03.Tizen | X | X | Xamarin.Forms(4.6.0.967)
+
+* PLUGIN
+
+ Apps(.sln) | PackageID | prefer_dotnet_aot | prefer_nuget_cache | Nuget
+-----------------------|-----------------------------------------------|-------------------|--------------------|--------------------------|
+ Launcher_TC_PLUGIN_01 | org.tizen.example.Launcher_TC_PLUGIN_01.Tizen | X | X | HarfBuzzSharp(2.6.1.6)
+ Launcher_TC_PLUGIN_02 | org.tizen.example.Launcher_TC_PLUGIN_02.Tizen | X | X | SkiaSharp(2.80.2)
+ Launcher_TC_PLUGIN_03 | org.tizen.example.Launcher_TC_PLUGIN_03.Tizen | False | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_PLUGIN_04 | org.tizen.example.Launcher_TC_PLUGIN_04.Tizen | True | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_PLUGIN_05 | org.tizen.example.Launcher_TC_PLUGIN_05.Tizen | X | False | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_PLUGIN_06 | org.tizen.example.Launcher_TC_PLUGIN_06.Tizen | X | True | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_PLUGIN_07 | org.tizen.example.Launcher_TC_PLUGIN_07.Tizen | X | False | SkiaSharp(1.68.0)
+ Launcher_TC_PLUGIN_08 | org.tizen.example.Launcher_TC_PLUGIN_08.Tizen | X | True | SkiaSharp(1.68.0)
+
+* PRELOAD
+
+ Apps(.sln) | PackageID | prefer_dotnet_aot | prefer_nuget_cache | Nuget
+------------------------|------------------------------------------------|-------------------|--------------------|--------------------------|
+ Launcher_TC_PRELOAD_01 | org.tizen.example.Launcher_TC_PRELOAD_01.Tizen | X | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_PRELOAD_02 | org.tizen.example.Launcher_TC_PRELOAD_02 | X | X | -
+
+* TAC
+
+ Apps(.sln) | PackageID | prefer_dotnet_aot | prefer_nuget_cache | Nuget
+--------------------|--------------------------------------------|-------------------|--------------------|-----------------------------------------------------|
+ Launcher_TC_TAC_01 | org.tizen.example.Launcher_TC_TAC_01.Tizen | X | True | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_TAC_02 | org.tizen.example.Launcher_TC_TAC_00.Tizen | X | True | Xamarin.Forms(4.8.0.1364), Newtonsoft.Json(12.0.3)
+ Launcher_TC_TAC_03 | org.tizen.example.Launcher_TC_TAC_00.Tizen | X | True | Xamarin.Forms(4.8.0.1687), sqlite-net-base(1.7.335)
+ Launcher_TC_TAC_04 | org.tizen.example.Launcher_TC_TAC_00.Tizen | X | X | Xamarin.Forms(4.8.0.1364)
+ Launcher_TC_TAC_05 | org.tizen.example.Launcher_TC_TAC_05.Tizen | X | True | Xamarin.Forms(5.0.0.1558-pre3)
+ Launcher_TC_TAC_06 | org.tizen.example.Launcher_TC_TAC_06.Tizen | X | True | Xamarin.Forms(5.0.0.1558-pre3)
+ Launcher_TC_TAC_07 | org.tizen.example.Launcher_TC_TAC_07.Tizen | X | True | Xamarin.Forms(4.4.0.991864)
+ Launcher_TC_TAC_08 | org.tizen.example.Launcher_TC_TAC_08.Tizen | X | True | XSF(1.0.0.0)
+ Launcher_TC_TAC_09 | org.tizen.example.Launcher_TC_TAC_09.Tizen | X | True | XSF(1.0.0.0)
+ Launcher_TC_TAC_10 | org.tizen.example.Launcher_TC_TAC_10.Tizen | X | True | Xamarin.Forms(4.8.0.1560), Google.Apis(1.49.0)
+ Launcher_TC_TAC_11 | org.tizen.example.Launcher_TC_TAC_11.Tizen | X | True | Xamarin.Forms(4.6.0.967), CommandLineParser(2.6.0)
+
+* TLC
+
+ Apps(.sln) | PackageID | prefer_dotnet_aot | prefer_nuget_cache | Nuget
+--------------------|--------------------------------------------|-------------------|--------------------|------------------------|
+ Launcher_TC_TLC_01 | org.tizen.example.Launcher_TC_TLC_01.Tizen | X | True | SkiaSharp(1.68.0)
+ Launcher_TC_TLC_02 | org.tizen.example.Launcher_TC_TLC_00.Tizen | X | True | SkiaSharp(1.68.3)
+ Launcher_TC_TLC_03 | org.tizen.example.Launcher_TC_TLC_00.Tizen | X | True | SkiaSharp(2.80.0)
+ Launcher_TC_TLC_04 | org.tizen.example.Launcher_TC_TLC_00.Tizen | X | True | SkiaSharp(1.68.2)
+ Launcher_TC_TLC_05 | org.tizen.example.Launcher_TC_TLC_00.Tizen | X | True | SkiaSharp(2.80.2)
+ Launcher_TC_TLC_06 | org.tizen.example.Launcher_TC_TLC_00.Tizen | X | X | SkiaSharp(2.80.2)
+ Launcher_TC_TLC_07 | org.tizen.example.Launcher_TC_TLC_07.Tizen | X | True | HarfBuzzSharp(2.6.1.7)
+ Launcher_TC_TLC_08 | org.tizen.example.Launcher_TC_TLC_08.Tizen | X | True | HarfBuzzSharp(2.6.1.7)
+ Launcher_TC_TLC_09 | org.tizen.example.Launcher_TC_TLC_09.Tizen | X | True | SkiaSharp(1.68.1)
+ Launcher_TC_TLC_10 | org.tizen.example.Launcher_TC_TLC_10.Tizen | X | True | FFmpegBindings(4.3.1)
+
+* TOOL
+
+ Apps(.sln) | PackageID | prefer_dotnet_aot | prefer_nuget_cache | Nuget
+---------------------|---------------------------------------------|-------------------|--------------------|---------------------------------------------|
+ Launcher_TC_TOOL_01 | org.tizen.example.Launcher_TC_TOOL_01.Tizen | True | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_TOOL_02 | org.tizen.example.Launcher_TC_TOOL_02.Tizen | X | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_TOOL_03 | org.tizen.example.Launcher_TC_TOOL_03.Tizen | True | X | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_TOOL_04 | org.tizen.example.Launcher_TC_TOOL_04.Tizen | X | True | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_TOOL_05 | org.tizen.example.Launcher_TC_TOOL_05.Tizen | X | True | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_TOOL_06 | org.tizen.example.Launcher_TC_TOOL_06.Tizen | X | True | Xamarin.Forms(4.6.0.967)
+ Launcher_TC_TOOL_07 | org.tizen.example.Launcher_TC_TOOL_07.Tizen | True | True | Xamarin.Forms(4.6.0.967), SkiaSharp(2.80.2)
+
+----
+### Note
+
+```
+ sln_name : Launcher_TC_TAC_02
+ package_id : org.tizen.example.Launcher_TC_TAC_00.Tizen
+ tpk_name : org.tizen.example.Launcher_TC_TAC_00.Tizen-1.0.0.tpk
+ tpk_rename : org.tizen.example.Launcher_TC_TAC_02.Tizen-1.0.0.tpk
+```
+ *NOTE : For tests related to application updates, the solution(.sln) is different, but the same package ID must be used.
+Also, different applications but the name of the built .tpk is the same.
+So, the BuildTPK.py script renames the generated tpk to the name of the solution(.sln).
+Therefore, Get the path of tpk based on the solution name and install the app.*