From: j-h.choi Date: Wed, 2 Dec 2020 08:25:52 +0000 (+0900) Subject: Add dotnet-launcher test case - Apps X-Git-Tag: submit/tizen/20201224.021710~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b73135a2439372f92acdc2600a01042bcd7f355a;p=platform%2Fcore%2Fdotnet%2Flauncher.git Add dotnet-launcher test case - Apps Change-Id: If85502bb88b3f72274b0a618c3f82aad9c67f3d7 --- diff --git a/tests/Apps/BuildTPK.py b/tests/Apps/BuildTPK.py new file mode 100755 index 0000000..b74baa2 --- /dev/null +++ b/tests/Apps/BuildTPK.py @@ -0,0 +1,81 @@ +#!/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() diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01.sln b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01.sln new file mode 100644 index 0000000..a310199 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {39166858-AEFB-4DA6-84C7-2C8245E29F5E}.Release|Any CPU.Build.0 = Release|Any CPU + {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EA05DAE7-559C-4AD6-8A6C-3314A16E6BB2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BF426BD1-2A32-4EE6-BDD5-FE20A613FF1E} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.cs b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.cs new file mode 100644 index 0000000..bb10d04 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_AOT_01 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.csproj b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.csproj new file mode 100644 index 0000000..e1d6d2f --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.csproj.user b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.csproj.user new file mode 100644 index 0000000..49b558d --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/Launcher_TC_AOT_01.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_AOT_01.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/shared/res/Launcher_TC_AOT_01.Tizen.png b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/shared/res/Launcher_TC_AOT_01.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/shared/res/Launcher_TC_AOT_01.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..d186263 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_AOT_01.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.cs b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.cs new file mode 100644 index 0000000..9e93903 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_AOT_01 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.csproj b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01/Launcher_TC_AOT_01.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02.sln b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02.sln new file mode 100644 index 0000000..345d218 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B5773FA8-8BA4-42D8-8D16-1650280498A2}.Release|Any CPU.Build.0 = Release|Any CPU + {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8AFD0822-25AF-4E69-88BC-AE3BE7131C3C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8F50B77F-2441-4AE4-BA48-67AD99DFB5E0} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.cs b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.cs new file mode 100644 index 0000000..78a8c02 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_AOT_02 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.csproj b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.csproj new file mode 100644 index 0000000..6c8aa32 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.csproj.user b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.csproj.user new file mode 100644 index 0000000..e6605b9 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/Launcher_TC_AOT_02.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_AOT_02.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/shared/res/Launcher_TC_AOT_02.Tizen.png b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/shared/res/Launcher_TC_AOT_02.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/shared/res/Launcher_TC_AOT_02.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..88e54ae --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_AOT_02.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.cs b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.cs new file mode 100644 index 0000000..cd9ef9f --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_AOT_02 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.csproj b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02/Launcher_TC_AOT_02.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03.sln b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03.sln new file mode 100644 index 0000000..38b0c27 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {45E33CCA-581B-4525-8163-82DD499ECE56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45E33CCA-581B-4525-8163-82DD499ECE56}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45E33CCA-581B-4525-8163-82DD499ECE56}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45E33CCA-581B-4525-8163-82DD499ECE56}.Release|Any CPU.Build.0 = Release|Any CPU + {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4E777D08-164D-45F0-8339-DA0CA7D72A09}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {39D3194E-444E-4D4E-B6A9-BB819FBD71E1} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.cs b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.cs new file mode 100644 index 0000000..20f4205 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_AOT_03 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.csproj b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.csproj new file mode 100644 index 0000000..ee69017 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.csproj.user b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.csproj.user new file mode 100644 index 0000000..50c3cc8 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/Launcher_TC_AOT_03.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_AOT_03.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/shared/res/Launcher_TC_AOT_03.Tizen.png b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/shared/res/Launcher_TC_AOT_03.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/shared/res/Launcher_TC_AOT_03.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..30dbe2d --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_AOT_03.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.cs b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.cs new file mode 100644 index 0000000..03b236a --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_AOT_03 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.csproj b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03/Launcher_TC_AOT_03.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.sln b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.sln new file mode 100644 index 0000000..91932ec --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2B62C51A-D76C-441C-A224-D194F3C69751}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2B62C51A-D76C-441C-A224-D194F3C69751}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2B62C51A-D76C-441C-A224-D194F3C69751}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2B62C51A-D76C-441C-A224-D194F3C69751}.Release|Any CPU.Build.0 = Release|Any CPU + {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8E14121D-1FA8-4D30-ABC0-A48EE1A269F6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {34A2FEC5-EC52-45AA-B149-19B2D3390799} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.cs b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.cs new file mode 100644 index 0000000..b718a4f --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_LAUNCH_01 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.csproj b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.csproj new file mode 100644 index 0000000..14d3fea --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.csproj.user b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.csproj.user new file mode 100644 index 0000000..75ca435 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/Launcher_TC_LAUNCH_01.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_LAUNCH_01.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/shared/res/Launcher_TC_LAUNCH_01.Tizen.png b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/shared/res/Launcher_TC_LAUNCH_01.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/shared/res/Launcher_TC_LAUNCH_01.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..5f8ac38 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_LAUNCH_01.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.cs b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.cs new file mode 100644 index 0000000..c6f1bc4 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_LAUNCH_01 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.csproj b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01/Launcher_TC_LAUNCH_01.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.sln b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.sln new file mode 100644 index 0000000..eb7e3e7 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_LAUNCH_02", "Launcher_TC_LAUNCH_02\Launcher_TC_LAUNCH_02.csproj", "{42BDB6ED-0169-4F05-BE39-74A1F419AB79}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Debug|Any CPU.Build.0 = Debug|Any CPU + {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Release|Any CPU.ActiveCfg = Release|Any CPU + {42BDB6ED-0169-4F05-BE39-74A1F419AB79}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C8045C4C-F28C-4FBC-8C94-E85253874E92} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.cs b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.cs new file mode 100644 index 0000000..acf3962 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.cs @@ -0,0 +1,49 @@ +using System; +using Tizen.NUI; +using Tizen.NUI.BaseComponents; + +namespace Launcher_TC_LAUNCH_02 +{ + class Program : NUIApplication + { + protected override void OnCreate() + { + base.OnCreate(); + Initialize(); + } + + void Initialize() + { + Window.Instance.KeyEvent += OnKeyEvent; + + TextLabel text = new TextLabel("Hello Tizen NUI World"); + text.HorizontalAlignment = HorizontalAlignment.Center; + text.VerticalAlignment = VerticalAlignment.Center; + text.TextColor = Color.Blue; + text.PointSize = 12.0f; + text.HeightResizePolicy = ResizePolicyType.FillToParent; + text.WidthResizePolicy = ResizePolicyType.FillToParent; + Window.Instance.GetDefaultLayer().Add(text); + + Animation animation = new Animation(2000); + animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(180.0f)), PositionAxis.X), 0, 500); + animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(0.0f)), PositionAxis.X), 500, 1000); + animation.Looping = true; + animation.Play(); + } + + public void OnKeyEvent(object sender, Window.KeyEventArgs e) + { + if (e.Key.State == Key.StateType.Down && (e.Key.KeyPressedName == "XF86Back" || e.Key.KeyPressedName == "Escape")) + { + Exit(); + } + } + + static void Main(string[] args) + { + var app = new Program(); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.csproj b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.csproj new file mode 100644 index 0000000..120c435 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.csproj @@ -0,0 +1,21 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.csproj.user b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.csproj.user new file mode 100644 index 0000000..c07edb1 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_LAUNCH_02 + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/shared/res/Launcher_TC_LAUNCH_02.png b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/shared/res/Launcher_TC_LAUNCH_02.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/shared/res/Launcher_TC_LAUNCH_02.png differ diff --git a/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/tizen-manifest.xml b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/tizen-manifest.xml new file mode 100644 index 0000000..0dcef77 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_02/Launcher_TC_LAUNCH_02/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_LAUNCH_02.png + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.sln b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.sln new file mode 100644 index 0000000..d95abbd --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3AAED22E-2432-4EBC-947A-96653C4522B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3AAED22E-2432-4EBC-947A-96653C4522B6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3AAED22E-2432-4EBC-947A-96653C4522B6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3AAED22E-2432-4EBC-947A-96653C4522B6}.Release|Any CPU.Build.0 = Release|Any CPU + {99C910E3-F961-497E-8035-61198B776062}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {99C910E3-F961-497E-8035-61198B776062}.Debug|Any CPU.Build.0 = Debug|Any CPU + {99C910E3-F961-497E-8035-61198B776062}.Release|Any CPU.ActiveCfg = Release|Any CPU + {99C910E3-F961-497E-8035-61198B776062}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D96CEF29-2383-404E-9403-ED6B50CF7820} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.cs b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.cs new file mode 100644 index 0000000..6725c3f --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_LAUNCH_03 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.csproj b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.csproj new file mode 100644 index 0000000..68b77f8 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.csproj.user b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.csproj.user new file mode 100644 index 0000000..dda5668 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/Launcher_TC_LAUNCH_03.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_LAUNCH_03.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/shared/res/Launcher_TC_LAUNCH_03.Tizen.png b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/shared/res/Launcher_TC_LAUNCH_03.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/shared/res/Launcher_TC_LAUNCH_03.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..84a5668 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_LAUNCH_03.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.cs b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.cs new file mode 100644 index 0000000..74a63ef --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_LAUNCH_03 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.csproj b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03/Launcher_TC_LAUNCH_03.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.sln b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.sln new file mode 100644 index 0000000..f0a9203 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F6508EF2-13EF-427D-8132-2D12E0ADB3BB}.Release|Any CPU.Build.0 = Release|Any CPU + {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B4DDC4DC-7860-4510-A0D1-BAAA778F1E17}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9E64051C-6D56-4956-885D-239326F4E2B2} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.cs new file mode 100644 index 0000000..1699e58 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_01 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.csproj new file mode 100644 index 0000000..981d733 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.csproj.user new file mode 100644 index 0000000..600fc51 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/Launcher_TC_PLUGIN_01.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_01.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/shared/res/Launcher_TC_PLUGIN_01.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/shared/res/Launcher_TC_PLUGIN_01.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/shared/res/Launcher_TC_PLUGIN_01.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..a3cfd1b --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_PLUGIN_01.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.cs b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.cs new file mode 100644 index 0000000..a7d0b7e --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_01 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.csproj b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.csproj new file mode 100644 index 0000000..3675123 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01/Launcher_TC_PLUGIN_01.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.sln b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.sln new file mode 100644 index 0000000..7a9983f --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9C518569-5F51-4955-9203-0708B8A1FDF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9C518569-5F51-4955-9203-0708B8A1FDF2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9C518569-5F51-4955-9203-0708B8A1FDF2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9C518569-5F51-4955-9203-0708B8A1FDF2}.Release|Any CPU.Build.0 = Release|Any CPU + {148EA6A3-B680-42D6-A488-CE006E38C07C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {148EA6A3-B680-42D6-A488-CE006E38C07C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {148EA6A3-B680-42D6-A488-CE006E38C07C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {148EA6A3-B680-42D6-A488-CE006E38C07C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {19D98610-7C36-467F-971B-8AAD01AF8A34} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.cs new file mode 100644 index 0000000..4a008b7 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_02 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.csproj new file mode 100644 index 0000000..1ae05d7 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.csproj.user new file mode 100644 index 0000000..2f06d3f --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/Launcher_TC_PLUGIN_02.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_02.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/shared/res/Launcher_TC_PLUGIN_02.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/shared/res/Launcher_TC_PLUGIN_02.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/shared/res/Launcher_TC_PLUGIN_02.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..f2e0306 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_PLUGIN_02.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.cs b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.cs new file mode 100644 index 0000000..0d0c11b --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_02 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.csproj b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.csproj new file mode 100644 index 0000000..af933c9 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02/Launcher_TC_PLUGIN_02.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.sln b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.sln new file mode 100644 index 0000000..1227dc1 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED81372E-4B80-4715-B325-7C1D6885ECD1}.Release|Any CPU.Build.0 = Release|Any CPU + {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {07A08348-846B-447D-BFBD-9A6AE2B53FC6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C554B03F-ABAB-41DE-91CA-97FA29A94D80} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.cs new file mode 100644 index 0000000..da6211d --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_03 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.csproj new file mode 100644 index 0000000..f54c57c --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.csproj.user new file mode 100644 index 0000000..edfff08 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/Launcher_TC_PLUGIN_03.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_03.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/shared/res/Launcher_TC_PLUGIN_03.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/shared/res/Launcher_TC_PLUGIN_03.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/shared/res/Launcher_TC_PLUGIN_03.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..a7d2449 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_PLUGIN_03.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.cs b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.cs new file mode 100644 index 0000000..e70593e --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_03 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.csproj b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03/Launcher_TC_PLUGIN_03.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.sln b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.sln new file mode 100644 index 0000000..347d5ce --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Debug|Any CPU.Build.0 = Debug|Any CPU + {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Release|Any CPU.ActiveCfg = Release|Any CPU + {76BC2CC8-8901-4728-A4B8-B02664F32D14}.Release|Any CPU.Build.0 = Release|Any CPU + {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Debug|Any CPU.Build.0 = Debug|Any CPU + {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Release|Any CPU.ActiveCfg = Release|Any CPU + {401D6BB0-50CB-40A8-BC6C-966E2E7A0C72}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8454B5A7-20C3-4063-A844-5B769DB4D7AA} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.cs new file mode 100644 index 0000000..9fed71a --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_04 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.csproj new file mode 100644 index 0000000..df34bf3 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.csproj.user new file mode 100644 index 0000000..edddddc --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/Launcher_TC_PLUGIN_04.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_04.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/shared/res/Launcher_TC_PLUGIN_04.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/shared/res/Launcher_TC_PLUGIN_04.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/shared/res/Launcher_TC_PLUGIN_04.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..0ff753c --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_PLUGIN_04.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.cs b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.cs new file mode 100644 index 0000000..2ac5f9e --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_04 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.csproj b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04/Launcher_TC_PLUGIN_04.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.sln b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.sln new file mode 100644 index 0000000..059a319 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CBD21F6B-B4B3-4EF6-A48B-4EEC20AFAF5C}.Release|Any CPU.Build.0 = Release|Any CPU + {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {661DC9A7-DD6B-4115-9F3B-3EA4FE9E348A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FEC87BFF-BD8D-412F-A8BA-FF269E0A498E} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.cs new file mode 100644 index 0000000..d9dbddf --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_05 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.csproj new file mode 100644 index 0000000..cebea8b --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.csproj.user new file mode 100644 index 0000000..b2105c7 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/Launcher_TC_PLUGIN_05.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_05.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/shared/res/Launcher_TC_PLUGIN_05.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/shared/res/Launcher_TC_PLUGIN_05.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/shared/res/Launcher_TC_PLUGIN_05.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..ee1a0d4 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_PLUGIN_05.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.cs b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.cs new file mode 100644 index 0000000..5f229f6 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_05 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.csproj b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05/Launcher_TC_PLUGIN_05.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.sln b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.sln new file mode 100644 index 0000000..e57f53b --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E789D435-08E8-4DB6-AE83-EB230F767A3D}.Release|Any CPU.Build.0 = Release|Any CPU + {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Debug|Any CPU.Build.0 = Debug|Any CPU + {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Release|Any CPU.ActiveCfg = Release|Any CPU + {99DA5C43-CD64-4F4B-97A7-C7F6A3CA5484}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1301661B-A5DD-470E-807C-801472F6440D} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.cs new file mode 100644 index 0000000..1337a0c --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_06 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.csproj new file mode 100644 index 0000000..3f4de44 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.csproj.user new file mode 100644 index 0000000..35727ed --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/Launcher_TC_PLUGIN_06.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_06.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/shared/res/Launcher_TC_PLUGIN_06.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/shared/res/Launcher_TC_PLUGIN_06.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/shared/res/Launcher_TC_PLUGIN_06.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..7d3ebe5 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_PLUGIN_06.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.cs b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.cs new file mode 100644 index 0000000..3b6f851 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_06 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.csproj b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06/Launcher_TC_PLUGIN_06.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.sln b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.sln new file mode 100644 index 0000000..eb7261e --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3A871209-5F10-4A4A-97B4-C7459989A510}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3A871209-5F10-4A4A-97B4-C7459989A510}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3A871209-5F10-4A4A-97B4-C7459989A510}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3A871209-5F10-4A4A-97B4-C7459989A510}.Release|Any CPU.Build.0 = Release|Any CPU + {DC077182-F32A-450C-B064-6C76439ADB17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DC077182-F32A-450C-B064-6C76439ADB17}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DC077182-F32A-450C-B064-6C76439ADB17}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DC077182-F32A-450C-B064-6C76439ADB17}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CF255C3C-6DF0-4057-A04A-6FCFBBBEA734} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.cs new file mode 100644 index 0000000..249338f --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_07 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.csproj new file mode 100644 index 0000000..5b3bf61 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.csproj.user new file mode 100644 index 0000000..ea4c089 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/Launcher_TC_PLUGIN_07.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_07.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/shared/res/Launcher_TC_PLUGIN_07.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/shared/res/Launcher_TC_PLUGIN_07.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/shared/res/Launcher_TC_PLUGIN_07.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..cfe3e66 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_PLUGIN_07.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.cs b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.cs new file mode 100644 index 0000000..e2c8b95 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_07 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.csproj b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.csproj new file mode 100644 index 0000000..22d8663 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07/Launcher_TC_PLUGIN_07.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.sln b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.sln new file mode 100644 index 0000000..3c4d610 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {95D0DB28-4BBC-46D3-9DDA-36C8373A8FA4}.Release|Any CPU.Build.0 = Release|Any CPU + {C0505472-2568-4B58-82CA-1B84A6250DFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C0505472-2568-4B58-82CA-1B84A6250DFA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C0505472-2568-4B58-82CA-1B84A6250DFA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C0505472-2568-4B58-82CA-1B84A6250DFA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D97B3739-2402-472F-B07F-4E80C012B213} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.cs b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.cs new file mode 100644 index 0000000..a1b6809 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_08 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.csproj b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.csproj new file mode 100644 index 0000000..af59e4f --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.csproj.user b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.csproj.user new file mode 100644 index 0000000..3228297 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/Launcher_TC_PLUGIN_08.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PLUGIN_08.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/shared/res/Launcher_TC_PLUGIN_08.Tizen.png b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/shared/res/Launcher_TC_PLUGIN_08.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/shared/res/Launcher_TC_PLUGIN_08.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..ca6545c --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_PLUGIN_08.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.cs b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.cs new file mode 100644 index 0000000..a6dbd0f --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PLUGIN_08 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.csproj b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.csproj new file mode 100644 index 0000000..22d8663 --- /dev/null +++ b/tests/Apps/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08/Launcher_TC_PLUGIN_08.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.sln b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.sln new file mode 100644 index 0000000..db1eff8 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2B945670-B2E9-437B-B004-2382A5B9CED5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2B945670-B2E9-437B-B004-2382A5B9CED5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2B945670-B2E9-437B-B004-2382A5B9CED5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2B945670-B2E9-437B-B004-2382A5B9CED5}.Release|Any CPU.Build.0 = Release|Any CPU + {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D5B69ECF-EB43-470E-B8BE-BAFB5A59CBB2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {305680BE-E1A2-463F-B276-FE8716181CD3} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.cs b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.cs new file mode 100644 index 0000000..5487f80 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_PRELOAD_01 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.csproj b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.csproj new file mode 100644 index 0000000..25da9a4 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.csproj.user b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.csproj.user new file mode 100644 index 0000000..3a3e539 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/Launcher_TC_PRELOAD_01.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PRELOAD_01.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/shared/res/Launcher_TC_PRELOAD_01.Tizen.png b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/shared/res/Launcher_TC_PRELOAD_01.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/shared/res/Launcher_TC_PRELOAD_01.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..0912271 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_PRELOAD_01.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.cs b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.cs new file mode 100644 index 0000000..a5284e7 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_PRELOAD_01 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.csproj b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01/Launcher_TC_PRELOAD_01.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.sln b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.sln new file mode 100644 index 0000000..d0ca498 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launcher_TC_PRELOAD_02", "Launcher_TC_PRELOAD_02\Launcher_TC_PRELOAD_02.csproj", "{BD074590-8511-4472-ACA4-90E2BEBBF183}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BD074590-8511-4472-ACA4-90E2BEBBF183}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BD074590-8511-4472-ACA4-90E2BEBBF183}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BD074590-8511-4472-ACA4-90E2BEBBF183}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BD074590-8511-4472-ACA4-90E2BEBBF183}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E64C74AD-2967-4198-9F5A-5E8D2404F4EF} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.cs b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.cs new file mode 100644 index 0000000..f8d2220 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.cs @@ -0,0 +1,49 @@ +using System; +using Tizen.NUI; +using Tizen.NUI.BaseComponents; + +namespace Launcher_TC_PRELOAD_02 +{ + class Program : NUIApplication + { + protected override void OnCreate() + { + base.OnCreate(); + Initialize(); + } + + void Initialize() + { + Window.Instance.KeyEvent += OnKeyEvent; + + TextLabel text = new TextLabel("Hello Tizen NUI World"); + text.HorizontalAlignment = HorizontalAlignment.Center; + text.VerticalAlignment = VerticalAlignment.Center; + text.TextColor = Color.Blue; + text.PointSize = 12.0f; + text.HeightResizePolicy = ResizePolicyType.FillToParent; + text.WidthResizePolicy = ResizePolicyType.FillToParent; + Window.Instance.GetDefaultLayer().Add(text); + + Animation animation = new Animation(2000); + animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(180.0f)), PositionAxis.X), 0, 500); + animation.AnimateTo(text, "Orientation", new Rotation(new Radian(new Degree(0.0f)), PositionAxis.X), 500, 1000); + animation.Looping = true; + animation.Play(); + } + + public void OnKeyEvent(object sender, Window.KeyEventArgs e) + { + if (e.Key.State == Key.StateType.Down && (e.Key.KeyPressedName == "XF86Back" || e.Key.KeyPressedName == "Escape")) + { + Exit(); + } + } + + static void Main(string[] args) + { + var app = new Program(); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.csproj b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.csproj new file mode 100644 index 0000000..120c435 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.csproj @@ -0,0 +1,21 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.csproj.user b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.csproj.user new file mode 100644 index 0000000..a1562f5 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_PRELOAD_02 + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/shared/res/Launcher_TC_PRELOAD_02.png b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/shared/res/Launcher_TC_PRELOAD_02.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/shared/res/Launcher_TC_PRELOAD_02.png differ diff --git a/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/tizen-manifest.xml b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/tizen-manifest.xml new file mode 100644 index 0000000..029c5e0 --- /dev/null +++ b/tests/Apps/Launcher_TC_PRELOAD_02/Launcher_TC_PRELOAD_02/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_PRELOAD_02.png + + diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01.sln b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01.sln new file mode 100644 index 0000000..535b763 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {80B17266-31EE-46A8-9379-37FBEF7369D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {80B17266-31EE-46A8-9379-37FBEF7369D2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {80B17266-31EE-46A8-9379-37FBEF7369D2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {80B17266-31EE-46A8-9379-37FBEF7369D2}.Release|Any CPU.Build.0 = Release|Any CPU + {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {107E0022-C3C0-4A67-BF04-7DA457B182DF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7483B6B3-2B1C-4A4D-9E16-3DBE686F7876} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.cs b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.cs new file mode 100644 index 0000000..b3ee537 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_01 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.csproj new file mode 100644 index 0000000..832dd51 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.csproj.user new file mode 100644 index 0000000..a68593e --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/Launcher_TC_TAC_01.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_01.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/shared/res/Launcher_TC_TAC_01.Tizen.png b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/shared/res/Launcher_TC_TAC_01.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/shared/res/Launcher_TC_TAC_01.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..09bb3f0 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_01.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.cs b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.cs new file mode 100644 index 0000000..e683d0f --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_01 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.csproj b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01/Launcher_TC_TAC_01.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02.sln b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02.sln new file mode 100644 index 0000000..50f698d --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D3B10D61-E2A7-4702-98F3-A3ABF42BC301}.Release|Any CPU.Build.0 = Release|Any CPU + {806F069F-047F-4E11-B952-6687F57B9CEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {806F069F-047F-4E11-B952-6687F57B9CEE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {806F069F-047F-4E11-B952-6687F57B9CEE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {806F069F-047F-4E11-B952-6687F57B9CEE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1D95A53B-1395-4392-94E3-2C311C652A2C} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.cs b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.cs new file mode 100644 index 0000000..ac533a6 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_02 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.csproj new file mode 100644 index 0000000..56b8e8f --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.csproj.user new file mode 100644 index 0000000..b9a7016 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/Launcher_TC_TAC_02.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_02.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/shared/res/Launcher_TC_TAC_02.Tizen.png b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/shared/res/Launcher_TC_TAC_02.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/shared/res/Launcher_TC_TAC_02.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..43141cc --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_02.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.cs b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.cs new file mode 100644 index 0000000..717389a --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_02 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + Console.WriteLine(Newtonsoft.Json.Required.Default); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.csproj b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.csproj new file mode 100644 index 0000000..2304d7d --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02/Launcher_TC_TAC_02.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03.sln b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03.sln new file mode 100644 index 0000000..8110bbf --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7D5C137A-AC06-4D60-BE6C-3823ED3D2D59}.Release|Any CPU.Build.0 = Release|Any CPU + {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AC9D78DF-2B24-49B6-AC8C-BAB959BFB4D5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C360A99A-0EB8-4DC0-A1C2-23AA68849200} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.cs b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.cs new file mode 100644 index 0000000..24c6e62 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_03 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.csproj new file mode 100644 index 0000000..b0129a7 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.csproj.user new file mode 100644 index 0000000..46b9d53 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/Launcher_TC_TAC_03.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_03.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/shared/res/Launcher_TC_TAC_03.Tizen.png b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/shared/res/Launcher_TC_TAC_03.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/shared/res/Launcher_TC_TAC_03.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..bc6e210 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_03.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.cs b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.cs new file mode 100644 index 0000000..83fc2e9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_03 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + Console.WriteLine(SQLite.SQLiteOpenFlags.ReadOnly); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.csproj b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.csproj new file mode 100644 index 0000000..900b6e6 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03/Launcher_TC_TAC_03.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04.sln b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04.sln new file mode 100644 index 0000000..2c3b68d --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {249C17CA-2BCB-41A0-864C-FDC776D51808}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {249C17CA-2BCB-41A0-864C-FDC776D51808}.Debug|Any CPU.Build.0 = Debug|Any CPU + {249C17CA-2BCB-41A0-864C-FDC776D51808}.Release|Any CPU.ActiveCfg = Release|Any CPU + {249C17CA-2BCB-41A0-864C-FDC776D51808}.Release|Any CPU.Build.0 = Release|Any CPU + {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2B3ECE4B-5771-4E8A-ACE6-C3A4452D2551}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D18F3EF5-63A2-489D-A423-8FFA8A80A6D8} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.cs b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.cs new file mode 100644 index 0000000..e86e6a2 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_04 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.csproj new file mode 100644 index 0000000..2a5aaca --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.csproj @@ -0,0 +1,27 @@ + + + + Exe + tizen70 + Launcher_TC_TAC_04.Tizen + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.csproj.user new file mode 100644 index 0000000..ccc2258 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/Launcher_TC_TAC_04.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_04.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/shared/res/Launcher_TC_TAC_04.Tizen.png b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/shared/res/Launcher_TC_TAC_04.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/shared/res/Launcher_TC_TAC_04.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..397f330 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_TAC_04.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.cs b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.cs new file mode 100644 index 0000000..1705bb4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_04 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.csproj b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.csproj new file mode 100644 index 0000000..09e6ddb --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04/Launcher_TC_TAC_04.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05.sln b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05.sln new file mode 100644 index 0000000..17139f2 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8F58B73E-35E0-4ECF-AFE8-545DE0DEE5B9}.Release|Any CPU.Build.0 = Release|Any CPU + {0B166CA4-C383-494C-BF26-01738FB3B547}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0B166CA4-C383-494C-BF26-01738FB3B547}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0B166CA4-C383-494C-BF26-01738FB3B547}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0B166CA4-C383-494C-BF26-01738FB3B547}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {04098CBE-84EA-4401-84FF-54563C679ACE} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.cs b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.cs new file mode 100644 index 0000000..368ebdc --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_05 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.csproj new file mode 100644 index 0000000..524d17d --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.csproj.user new file mode 100644 index 0000000..5ed080f --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/Launcher_TC_TAC_05.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_05.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/shared/res/Launcher_TC_TAC_05.Tizen.png b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/shared/res/Launcher_TC_TAC_05.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/shared/res/Launcher_TC_TAC_05.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..a51b869 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_05.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.cs b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.cs new file mode 100644 index 0000000..a4ebbb8 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_05 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.csproj b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.csproj new file mode 100644 index 0000000..3ea15d9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05/Launcher_TC_TAC_05.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06.sln b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06.sln new file mode 100644 index 0000000..0a3a0b4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {782131F4-4B52-491B-A0CA-20F14B619FB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {782131F4-4B52-491B-A0CA-20F14B619FB2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {782131F4-4B52-491B-A0CA-20F14B619FB2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {782131F4-4B52-491B-A0CA-20F14B619FB2}.Release|Any CPU.Build.0 = Release|Any CPU + {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C3229CBF-CC4E-45DE-B4CF-2E99336EF122}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {823DC481-804A-4D8B-BF0A-1CF3B8005147} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.cs b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.cs new file mode 100644 index 0000000..3f3f86e --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_06 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.csproj new file mode 100644 index 0000000..5791748 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.csproj.user new file mode 100644 index 0000000..5c8847a --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/Launcher_TC_TAC_06.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_06.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/shared/res/Launcher_TC_TAC_06.Tizen.png b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/shared/res/Launcher_TC_TAC_06.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/shared/res/Launcher_TC_TAC_06.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..3633992 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_06.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.cs b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.cs new file mode 100644 index 0000000..f591bf9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_06 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.csproj b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.csproj new file mode 100644 index 0000000..3ea15d9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06/Launcher_TC_TAC_06.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07.sln b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07.sln new file mode 100644 index 0000000..8ddb1ac --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {04292B53-6FAB-495D-9F23-1B63BA94E127}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {04292B53-6FAB-495D-9F23-1B63BA94E127}.Debug|Any CPU.Build.0 = Debug|Any CPU + {04292B53-6FAB-495D-9F23-1B63BA94E127}.Release|Any CPU.ActiveCfg = Release|Any CPU + {04292B53-6FAB-495D-9F23-1B63BA94E127}.Release|Any CPU.Build.0 = Release|Any CPU + {2820BE69-BF0C-4387-A441-6142701589A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2820BE69-BF0C-4387-A441-6142701589A8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2820BE69-BF0C-4387-A441-6142701589A8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2820BE69-BF0C-4387-A441-6142701589A8}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {75BED149-EB49-4806-A8C0-C7782686E0E7} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.cs b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.cs new file mode 100644 index 0000000..fe6a3f8 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_07 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.csproj new file mode 100644 index 0000000..befec05 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.csproj.user new file mode 100644 index 0000000..48942bf --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/Launcher_TC_TAC_07.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_07.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/shared/res/Launcher_TC_TAC_07.Tizen.png b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/shared/res/Launcher_TC_TAC_07.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/shared/res/Launcher_TC_TAC_07.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..49c7ac8 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_07.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.cs b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.cs new file mode 100644 index 0000000..aa952c7 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_07 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.csproj b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.csproj new file mode 100644 index 0000000..08db03f --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07/Launcher_TC_TAC_07.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08.sln b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08.sln new file mode 100644 index 0000000..7bed549 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8CF54F1A-1D07-47FD-84C2-AB6DBBB035AC}.Release|Any CPU.Build.0 = Release|Any CPU + {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD5F9C95-63AB-44C7-BEEF-0DFCAF8C124A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3F409E87-6A8E-4D4C-A17F-D486175202F3} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.cs b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.cs new file mode 100644 index 0000000..afbe2fc --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_08 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.csproj new file mode 100644 index 0000000..10be156 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.csproj @@ -0,0 +1,33 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + + + ..\..\XSF.dll + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.csproj.user new file mode 100644 index 0000000..0d86f16 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/Launcher_TC_TAC_08.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_08.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/shared/res/Launcher_TC_TAC_08.Tizen.png b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/shared/res/Launcher_TC_TAC_08.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/shared/res/Launcher_TC_TAC_08.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..54e79c3 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_08.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.cs b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.cs new file mode 100644 index 0000000..0f008cf --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_08 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.csproj b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.csproj new file mode 100644 index 0000000..cdcc133 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08/Launcher_TC_TAC_08.csproj @@ -0,0 +1,13 @@ + + + + netstandard2.0 + + + + + ..\..\XSF.dll + + + + diff --git a/tests/Apps/Launcher_TC_TAC_08/XSF.dll b/tests/Apps/Launcher_TC_TAC_08/XSF.dll new file mode 100644 index 0000000..e3cf81d Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_08/XSF.dll differ diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09.sln b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09.sln new file mode 100644 index 0000000..e8219b9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E05A5D9B-3F19-4D5E-803C-ECBB9AD32A45}.Release|Any CPU.Build.0 = Release|Any CPU + {67E7F149-02ED-4524-A30D-0823FE2FE249}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {67E7F149-02ED-4524-A30D-0823FE2FE249}.Debug|Any CPU.Build.0 = Debug|Any CPU + {67E7F149-02ED-4524-A30D-0823FE2FE249}.Release|Any CPU.ActiveCfg = Release|Any CPU + {67E7F149-02ED-4524-A30D-0823FE2FE249}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DE31CD48-4117-4155-AFAB-6AB4C3398A59} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.cs b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.cs new file mode 100644 index 0000000..bbd69d9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_09 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.csproj new file mode 100644 index 0000000..42b3be3 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.csproj @@ -0,0 +1,34 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + + + ..\..\XSF.dll + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.csproj.user new file mode 100644 index 0000000..c3da235 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/Launcher_TC_TAC_09.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_09.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/shared/res/Launcher_TC_TAC_09.Tizen.png b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/shared/res/Launcher_TC_TAC_09.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/shared/res/Launcher_TC_TAC_09.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..6b6d697 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_09.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.cs b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.cs new file mode 100644 index 0000000..efa0ab1 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_09 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.csproj b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.csproj new file mode 100644 index 0000000..cdcc133 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09/Launcher_TC_TAC_09.csproj @@ -0,0 +1,13 @@ + + + + netstandard2.0 + + + + + ..\..\XSF.dll + + + + diff --git a/tests/Apps/Launcher_TC_TAC_09/XSF.dll b/tests/Apps/Launcher_TC_TAC_09/XSF.dll new file mode 100644 index 0000000..e0f5578 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_09/XSF.dll differ diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10.sln b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10.sln new file mode 100644 index 0000000..f7b1504 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {93CD0435-1F50-4D09-AD17-2BF30D7780E3}.Release|Any CPU.Build.0 = Release|Any CPU + {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3347C2A1-50B1-46A1-B8C5-113ADA917A12}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F34C2A86-62B9-4C06-B68A-D2A1FE3C0E6C} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.cs b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.cs new file mode 100644 index 0000000..197a62a --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_10 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.csproj new file mode 100644 index 0000000..4956d1c --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.csproj.user new file mode 100644 index 0000000..e88b128 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/Launcher_TC_TAC_10.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_10.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/shared/res/Launcher_TC_TAC_10.Tizen.png b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/shared/res/Launcher_TC_TAC_10.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/shared/res/Launcher_TC_TAC_10.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..051e2ef --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_10.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.cs b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.cs new file mode 100644 index 0000000..4d14dc6 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_10 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.csproj b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.csproj new file mode 100644 index 0000000..01068e4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10/Launcher_TC_TAC_10.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11.sln b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11.sln new file mode 100644 index 0000000..d335ab6 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9CDDBD51-36F7-4F7B-A658-FF14B6D68366}.Release|Any CPU.Build.0 = Release|Any CPU + {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DACC68BA-D4C6-4FF0-AC82-04B3FA340CE0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1877E88F-36A3-48C1-8BB8-1F0BD3D6A352} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.cs b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.cs new file mode 100644 index 0000000..0ce800a --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TAC_11 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.csproj b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.csproj new file mode 100644 index 0000000..14ac129 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.csproj.user b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.csproj.user new file mode 100644 index 0000000..6812ae9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/Launcher_TC_TAC_11.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TAC_11.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/shared/res/Launcher_TC_TAC_11.Tizen.png b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/shared/res/Launcher_TC_TAC_11.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/shared/res/Launcher_TC_TAC_11.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..b18f11b --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TAC_11.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.cs b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.cs new file mode 100644 index 0000000..9803af0 --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TAC_11 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.csproj b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.csproj new file mode 100644 index 0000000..060e64a --- /dev/null +++ b/tests/Apps/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11/Launcher_TC_TAC_11.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01.sln b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01.sln new file mode 100644 index 0000000..43879e5 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6B793DAD-3F2F-43E2-8913-A903879E1971}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6B793DAD-3F2F-43E2-8913-A903879E1971}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6B793DAD-3F2F-43E2-8913-A903879E1971}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6B793DAD-3F2F-43E2-8913-A903879E1971}.Release|Any CPU.Build.0 = Release|Any CPU + {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {459DA443-6A75-4BFB-A9B8-C92549FEBABB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {12D3EC10-DB2E-414F-9F48-21791C073696} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.cs b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.cs new file mode 100644 index 0000000..412fc8d --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_01 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.csproj new file mode 100644 index 0000000..ab39f44 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.csproj.user new file mode 100644 index 0000000..f7418e6 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/Launcher_TC_TLC_01.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_01.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/shared/res/Launcher_TC_TLC_01.Tizen.png b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/shared/res/Launcher_TC_TLC_01.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/shared/res/Launcher_TC_TLC_01.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..9049c7b --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_01.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.cs b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.cs new file mode 100644 index 0000000..5811839 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_01 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new SkiaSharp.SKPaint(); + + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.csproj b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.csproj new file mode 100644 index 0000000..603ad64 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01/Launcher_TC_TLC_01.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02.sln b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02.sln new file mode 100644 index 0000000..29a6640 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {605F26EF-CFBB-4BA9-9F13-E83E986DC83F}.Release|Any CPU.Build.0 = Release|Any CPU + {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8F70AC8E-C5A6-4510-8691-2CF1E1F3FF9F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CAD72548-CCA1-40FB-8485-F28442EC6248} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.cs b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.cs new file mode 100644 index 0000000..97722fb --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_02 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.csproj new file mode 100644 index 0000000..73f58e9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.csproj.user new file mode 100644 index 0000000..4c6613e --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/Launcher_TC_TLC_02.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_02.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/shared/res/Launcher_TC_TLC_02.Tizen.png b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/shared/res/Launcher_TC_TLC_02.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/shared/res/Launcher_TC_TLC_02.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..2003104 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_02.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.cs b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.cs new file mode 100644 index 0000000..75e2d36 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_02 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new SkiaSharp.SKPaint(); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.csproj b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.csproj new file mode 100644 index 0000000..a3de5a4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02/Launcher_TC_TLC_02.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03.sln b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03.sln new file mode 100644 index 0000000..a0182d4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F91C833E-6F44-4CD2-8113-1C55BA0BE6BB}.Release|Any CPU.Build.0 = Release|Any CPU + {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FC034C0C-7E1A-4370-8D7B-F631606C963C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8BFEB9F6-FF37-421C-8901-E7965E09A66D} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.cs b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.cs new file mode 100644 index 0000000..d17e937 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_03 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.csproj new file mode 100644 index 0000000..5dc1401 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.csproj.user new file mode 100644 index 0000000..b7cc213 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/Launcher_TC_TLC_03.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_03.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/shared/res/Launcher_TC_TLC_03.Tizen.png b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/shared/res/Launcher_TC_TLC_03.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/shared/res/Launcher_TC_TLC_03.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..858c575 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_03.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.cs b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.cs new file mode 100644 index 0000000..c29b8f1 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_03 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new SkiaSharp.SKPaint(); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.csproj b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.csproj new file mode 100644 index 0000000..0e1a8e4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03/Launcher_TC_TLC_03.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04.sln b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04.sln new file mode 100644 index 0000000..190ada5 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1B82F952-B88B-43E9-B0F0-AF16381512E8}.Release|Any CPU.Build.0 = Release|Any CPU + {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1C03DB38-CCE0-40F5-94EC-123343D147DA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DB85B0EF-917D-48D1-9338-E99425B2F474} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.cs b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.cs new file mode 100644 index 0000000..ee118d0 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_04 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.csproj new file mode 100644 index 0000000..6050f9f --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.csproj.user new file mode 100644 index 0000000..0299686 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/Launcher_TC_TLC_04.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_04.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/shared/res/Launcher_TC_TLC_04.Tizen.png b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/shared/res/Launcher_TC_TLC_04.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/shared/res/Launcher_TC_TLC_04.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..483865a --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_04.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.cs b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.cs new file mode 100644 index 0000000..94c92d9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_04 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new SkiaSharp.SKPaint(); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.csproj b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.csproj new file mode 100644 index 0000000..5fc0f8f --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04/Launcher_TC_TLC_04.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05.sln b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05.sln new file mode 100644 index 0000000..284f39e --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Debug|Any CPU.Build.0 = Debug|Any CPU + {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Release|Any CPU.ActiveCfg = Release|Any CPU + {909FF077-F45F-424E-8AF2-12BFA15DCB41}.Release|Any CPU.Build.0 = Release|Any CPU + {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {69B4D031-3ECC-4EA1-A7C7-4F29F719C0A6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F0591A38-ADD3-4D9E-9E95-B19FCB99B88E} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.cs b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.cs new file mode 100644 index 0000000..e277e71 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_05 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.csproj new file mode 100644 index 0000000..58e32aa --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.csproj.user new file mode 100644 index 0000000..2e0dd95 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/Launcher_TC_TLC_05.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_05.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/shared/res/Launcher_TC_TLC_05.Tizen.png b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/shared/res/Launcher_TC_TLC_05.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/shared/res/Launcher_TC_TLC_05.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..f11df37 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_05.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.cs b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.cs new file mode 100644 index 0000000..6221f83 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_05 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new SkiaSharp.SKPaint(); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.csproj b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.csproj new file mode 100644 index 0000000..af933c9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05/Launcher_TC_TLC_05.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06.sln b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06.sln new file mode 100644 index 0000000..161fc9d --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2020BCA3-26EC-4E6D-838A-804C1581D88C}.Release|Any CPU.Build.0 = Release|Any CPU + {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Debug|Any CPU.Build.0 = Debug|Any CPU + {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Release|Any CPU.ActiveCfg = Release|Any CPU + {71B68F60-48E7-49F6-9C8D-B5CEE4066431}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5FE93CF6-228E-4D37-B2B7-0FA817571408} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.cs b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.cs new file mode 100644 index 0000000..af9696c --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_06 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.csproj new file mode 100644 index 0000000..1562a12 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.csproj.user new file mode 100644 index 0000000..ca07012 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/Launcher_TC_TLC_06.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_06.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/shared/res/Launcher_TC_TLC_06.Tizen.png b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/shared/res/Launcher_TC_TLC_06.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/shared/res/Launcher_TC_TLC_06.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..6126451 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_TLC_06.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.cs b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.cs new file mode 100644 index 0000000..d5ba333 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_06 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new SkiaSharp.SKPaint(); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.csproj b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.csproj new file mode 100644 index 0000000..af933c9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06/Launcher_TC_TLC_06.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07.sln b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07.sln new file mode 100644 index 0000000..59b1780 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4F4C69CA-4E56-4282-BEB0-87F5CE9705F5}.Release|Any CPU.Build.0 = Release|Any CPU + {F9911424-6E1C-4369-BD21-0474426CDAF4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F9911424-6E1C-4369-BD21-0474426CDAF4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F9911424-6E1C-4369-BD21-0474426CDAF4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F9911424-6E1C-4369-BD21-0474426CDAF4}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B98F1206-4E78-4E74-9F2F-15BA1FE8F160} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.cs b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.cs new file mode 100644 index 0000000..71d85f7 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_07 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.csproj new file mode 100644 index 0000000..b47666e --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.csproj.user new file mode 100644 index 0000000..eb99640 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/Launcher_TC_TLC_07.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_07.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/shared/res/Launcher_TC_TLC_07.Tizen.png b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/shared/res/Launcher_TC_TLC_07.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/shared/res/Launcher_TC_TLC_07.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..2b73bef --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_07.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.cs b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.cs new file mode 100644 index 0000000..149f0c5 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_07 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new HarfBuzzSharp.Buffer(); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.csproj b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.csproj new file mode 100644 index 0000000..b022d17 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07/Launcher_TC_TLC_07.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08.sln b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08.sln new file mode 100644 index 0000000..4fb72b6 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0FC778E0-9A45-4E63-B950-BC39485A6A40}.Release|Any CPU.Build.0 = Release|Any CPU + {D1C00627-5EA6-4349-B719-BACF704F16DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D1C00627-5EA6-4349-B719-BACF704F16DB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D1C00627-5EA6-4349-B719-BACF704F16DB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D1C00627-5EA6-4349-B719-BACF704F16DB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6E3F6E8B-8C3C-466F-B5C7-D3F83FB2A826} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.cs b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.cs new file mode 100644 index 0000000..f622ec1 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_08 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.csproj new file mode 100644 index 0000000..934bdab --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.csproj.user new file mode 100644 index 0000000..40376fe --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/Launcher_TC_TLC_08.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_08.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/shared/res/Launcher_TC_TLC_08.Tizen.png b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/shared/res/Launcher_TC_TLC_08.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/shared/res/Launcher_TC_TLC_08.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..2f3dd68 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_08.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.cs b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.cs new file mode 100644 index 0000000..535a69e --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_08 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new HarfBuzzSharp.Buffer(); + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.csproj b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.csproj new file mode 100644 index 0000000..b022d17 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08/Launcher_TC_TLC_08.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09.sln b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09.sln new file mode 100644 index 0000000..47a874d --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {39BA854B-1FEE-4413-80B3-B34EEF2AEF6F}.Release|Any CPU.Build.0 = Release|Any CPU + {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D8AA3208-D137-43F5-A7A8-3718B1F63EEB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {983F299A-4DEB-413A-AA72-A3A86B9DAC51} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.cs b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.cs new file mode 100644 index 0000000..45a3443 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_09 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.csproj new file mode 100644 index 0000000..a6db1ea --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.csproj.user new file mode 100644 index 0000000..07e0891 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/Launcher_TC_TLC_09.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_09.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/shared/res/Launcher_TC_TLC_09.Tizen.png b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/shared/res/Launcher_TC_TLC_09.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/shared/res/Launcher_TC_TLC_09.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..ad8531d --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_09.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.cs b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.cs new file mode 100644 index 0000000..efa3af4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_09 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + new SkiaSharp.SKPaint(); + + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.csproj b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.csproj new file mode 100644 index 0000000..a9c0949 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09/Launcher_TC_TLC_09.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10.sln b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10.sln new file mode 100644 index 0000000..f5cbd14 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {499EB236-1E76-4444-B02A-94880C167B1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {499EB236-1E76-4444-B02A-94880C167B1E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {499EB236-1E76-4444-B02A-94880C167B1E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {499EB236-1E76-4444-B02A-94880C167B1E}.Release|Any CPU.Build.0 = Release|Any CPU + {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Debug|Any CPU.Build.0 = Debug|Any CPU + {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Release|Any CPU.ActiveCfg = Release|Any CPU + {19A5D67D-A109-499E-BD3B-6935E7E13C96}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7C1B668A-F64B-4D35-BF27-C1B8AEB8F461} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.cs b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.cs new file mode 100644 index 0000000..3b00cc3 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TLC_10 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.csproj b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.csproj new file mode 100644 index 0000000..69aa2fa --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.csproj.user b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.csproj.user new file mode 100644 index 0000000..9eb5e7b --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/Launcher_TC_TLC_10.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TLC_10.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/shared/res/Launcher_TC_TLC_10.Tizen.png b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/shared/res/Launcher_TC_TLC_10.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/shared/res/Launcher_TC_TLC_10.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..eb6614d --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TLC_10.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.cs b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.cs new file mode 100644 index 0000000..7ade4cf --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TLC_10 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.csproj b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.csproj new file mode 100644 index 0000000..2e73367 --- /dev/null +++ b/tests/Apps/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10/Launcher_TC_TLC_10.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.sln b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.sln new file mode 100644 index 0000000..a339e45 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0D04DD43-87AB-4168-B32E-2A16C542D033}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0D04DD43-87AB-4168-B32E-2A16C542D033}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0D04DD43-87AB-4168-B32E-2A16C542D033}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0D04DD43-87AB-4168-B32E-2A16C542D033}.Release|Any CPU.Build.0 = Release|Any CPU + {A974F173-7CD5-43B7-9147-5B662E58D612}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A974F173-7CD5-43B7-9147-5B662E58D612}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A974F173-7CD5-43B7-9147-5B662E58D612}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A974F173-7CD5-43B7-9147-5B662E58D612}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {98F463B3-5E69-4E7D-A112-BED3B89AB4A2} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.cs b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.cs new file mode 100644 index 0000000..6a3b39b --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_01 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.csproj b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.csproj new file mode 100644 index 0000000..bf12d75 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.csproj.user b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.csproj.user new file mode 100644 index 0000000..6c2ba66 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/Launcher_TC_TOOL_01.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TOOL_01.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/shared/res/Launcher_TC_TOOL_01.Tizen.png b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/shared/res/Launcher_TC_TOOL_01.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/shared/res/Launcher_TC_TOOL_01.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..b682271 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TOOL_01.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.cs b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.cs new file mode 100644 index 0000000..2bcbb89 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_01 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.csproj b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01/Launcher_TC_TOOL_01.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.sln b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.sln new file mode 100644 index 0000000..16b0b37 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F53AB79C-31BA-4D0C-A320-88CD57215B2B}.Release|Any CPU.Build.0 = Release|Any CPU + {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {16CD4607-F9E0-4760-9D4A-849FE2D4195C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {09EFCDAD-4A85-4266-9BB0-39A54F68FADA} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.cs b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.cs new file mode 100644 index 0000000..98f5890 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_02 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.csproj b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.csproj new file mode 100644 index 0000000..fe0dd73 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.csproj.user b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.csproj.user new file mode 100644 index 0000000..59aa29a --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/Launcher_TC_TOOL_02.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TOOL_02.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/shared/res/Launcher_TC_TOOL_02.Tizen.png b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/shared/res/Launcher_TC_TOOL_02.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/shared/res/Launcher_TC_TOOL_02.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..b8ac575 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + Launcher_TC_TOOL_02.Tizen.png + + diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.cs b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.cs new file mode 100644 index 0000000..9e7a359 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_02 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.csproj b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02/Launcher_TC_TOOL_02.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.sln b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.sln new file mode 100644 index 0000000..52264f4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {26C4D738-3E35-45F0-9E51-5E5EC24ED65A}.Release|Any CPU.Build.0 = Release|Any CPU + {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DEA7B383-6735-487B-8CBB-C0BF1155ED55}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {74DA2BD6-374C-4B7C-BDFD-CA252EC204C3} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.cs b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.cs new file mode 100644 index 0000000..147829d --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_03 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.csproj b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.csproj new file mode 100644 index 0000000..f3748ca --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.csproj.user b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.csproj.user new file mode 100644 index 0000000..9b264ef --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/Launcher_TC_TOOL_03.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TOOL_03.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/shared/res/Launcher_TC_TOOL_03.Tizen.png b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/shared/res/Launcher_TC_TOOL_03.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/shared/res/Launcher_TC_TOOL_03.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..024d9a4 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TOOL_03.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.cs b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.cs new file mode 100644 index 0000000..c716108 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_03 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.csproj b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03/Launcher_TC_TOOL_03.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.sln b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.sln new file mode 100644 index 0000000..41eb40c --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BE364F9B-A2A9-4FC3-8468-C3312A11B018}.Release|Any CPU.Build.0 = Release|Any CPU + {853E5727-7CB9-4815-92CF-02322FCD6834}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {853E5727-7CB9-4815-92CF-02322FCD6834}.Debug|Any CPU.Build.0 = Debug|Any CPU + {853E5727-7CB9-4815-92CF-02322FCD6834}.Release|Any CPU.ActiveCfg = Release|Any CPU + {853E5727-7CB9-4815-92CF-02322FCD6834}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7BEDF634-D52A-44F1-BB53-BAC50D17A6C2} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.cs b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.cs new file mode 100644 index 0000000..7b7f94f --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_04 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.csproj b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.csproj new file mode 100644 index 0000000..44b18c9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.csproj.user b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.csproj.user new file mode 100644 index 0000000..a3b98bf --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/Launcher_TC_TOOL_04.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TOOL_04.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/shared/res/Launcher_TC_TOOL_04.Tizen.png b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/shared/res/Launcher_TC_TOOL_04.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/shared/res/Launcher_TC_TOOL_04.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..8771f3a --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TOOL_04.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.cs b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.cs new file mode 100644 index 0000000..883902c --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_04 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.csproj b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04/Launcher_TC_TOOL_04.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.sln b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.sln new file mode 100644 index 0000000..4d5523b --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5AAAFD35-B6A9-4F7D-B0B9-217FD9DB5515}.Release|Any CPU.Build.0 = Release|Any CPU + {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ADDEC7A9-1BCC-469E-B1FB-E02994D855DD}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4F9F1520-90D9-48EC-A37A-DDB6CC4DC85E} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.cs b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.cs new file mode 100644 index 0000000..43d7a07 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_05 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.csproj b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.csproj new file mode 100644 index 0000000..3e39aff --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.csproj.user b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.csproj.user new file mode 100644 index 0000000..55f565e --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/Launcher_TC_TOOL_05.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TOOL_05.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/shared/res/Launcher_TC_TOOL_05.Tizen.png b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/shared/res/Launcher_TC_TOOL_05.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/shared/res/Launcher_TC_TOOL_05.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..e1c1dad --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TOOL_05.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.cs b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.cs new file mode 100644 index 0000000..9e6aad3 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_05 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.csproj b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05/Launcher_TC_TOOL_05.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.sln b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.sln new file mode 100644 index 0000000..164f07e --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AD9D5587-07CA-4FE1-A281-E62B2330C573}.Release|Any CPU.Build.0 = Release|Any CPU + {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3B891117-C14A-4C62-B9CB-F0E16B69DAD9}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B0790BFA-1947-4041-A096-A78291C2FA40} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.cs b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.cs new file mode 100644 index 0000000..2c067f2 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_06 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.csproj b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.csproj new file mode 100644 index 0000000..1259609 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.csproj.user b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.csproj.user new file mode 100644 index 0000000..baec2fb --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/Launcher_TC_TOOL_06.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TOOL_06.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/shared/res/Launcher_TC_TOOL_06.Tizen.png b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/shared/res/Launcher_TC_TOOL_06.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/shared/res/Launcher_TC_TOOL_06.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..7228493 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.Tizen/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + Launcher_TC_TOOL_06.Tizen.png + + + diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.cs b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.cs new file mode 100644 index 0000000..f231b83 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_06 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.csproj b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.csproj new file mode 100644 index 0000000..08b8f09 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06/Launcher_TC_TOOL_06.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.sln b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.sln new file mode 100644 index 0000000..81a44f0 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +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}" +EndProject +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}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {304EFEAC-3E07-4A45-899E-1C73370684CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {304EFEAC-3E07-4A45-899E-1C73370684CE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {304EFEAC-3E07-4A45-899E-1C73370684CE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {304EFEAC-3E07-4A45-899E-1C73370684CE}.Release|Any CPU.Build.0 = Release|Any CPU + {31327CA8-98A1-405E-918F-69D6C54907DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {31327CA8-98A1-405E-918F-69D6C54907DC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {31327CA8-98A1-405E-918F-69D6C54907DC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {31327CA8-98A1-405E-918F-69D6C54907DC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {56F3798D-51A6-4A26-880A-4A29789CCADB} + EndGlobalSection +EndGlobal diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.cs b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.cs new file mode 100644 index 0000000..289340c --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.cs @@ -0,0 +1,22 @@ +using System; +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_07 +{ + class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + LoadApplication(new App()); + } + + static void Main(string[] args) + { + var app = new Program(); + Forms.Init(app); + app.Run(args); + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.csproj b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.csproj new file mode 100644 index 0000000..4d2ee34 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.csproj @@ -0,0 +1,26 @@ + + + + Exe + tizen70 + + + + portable + + + None + + + + + + + + + + + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.csproj.user b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.csproj.user new file mode 100644 index 0000000..a88f9d5 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/Launcher_TC_TOOL_07.Tizen.csproj.user @@ -0,0 +1,6 @@ + + + + Launcher_TC_TOOL_07.Tizen + + \ No newline at end of file diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/shared/res/Launcher_TC_TOOL_07.Tizen.png b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/shared/res/Launcher_TC_TOOL_07.Tizen.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/shared/res/Launcher_TC_TOOL_07.Tizen.png differ diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/tizen-manifest.xml b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/tizen-manifest.xml new file mode 100644 index 0000000..73a2ebf --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.Tizen/tizen-manifest.xml @@ -0,0 +1,17 @@ + + + + + + Launcher_TC_TOOL_07.Tizen.png + + + + diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.cs b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.cs new file mode 100644 index 0000000..c2e4f7f --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace Launcher_TC_TOOL_07 +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.csproj b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.csproj new file mode 100644 index 0000000..af933c9 --- /dev/null +++ b/tests/Apps/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07/Launcher_TC_TOOL_07.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/tests/Apps/README.md b/tests/Apps/README.md new file mode 100644 index 0000000..e01f9ca --- /dev/null +++ b/tests/Apps/README.md @@ -0,0 +1,132 @@ +# 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.*