From: Sanghoon Lee Date: Wed, 7 Mar 2018 09:59:54 +0000 (+0900) Subject: [Non-ACR][Updated .gitignore file] X-Git-Tag: public_m1_final~114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8456e1eff94b9c2179b789af77f5bcc964786ec2;p=test%2Ftct%2Fcsharp%2Fapi.git [Non-ACR][Updated .gitignore file] Change-Id: Iadb02d1cf642046e5be3fff304bce8b3f8e13cb5 --- diff --git a/.gitignore b/.gitignore index a99a3e2..06fda34 100755 --- a/.gitignore +++ b/.gitignore @@ -214,8 +214,6 @@ tct-suite-vs/**/*.lock.json tct-suite-vs/.vs/ tct-suite-vs/**/*.nuget.targets tct-suite-vs/**/*.nuget.props -release/csharp-tct_5.0_dotnet/csharp-tct_5.0_dotnet/package/* -release/csharp-tct_5.0_dotnet/csharp-tct_5.0_dotnet/package/pkg_infos/ tool/script/*.pyc tool/script/release/ tool/script/Log diff --git a/tct-suite-vs/Tizen.WebView.Tests/Program.cs b/tct-suite-vs/Tizen.WebView.Tests/Program.cs deleted file mode 100755 index aa1ff4c..0000000 --- a/tct-suite-vs/Tizen.WebView.Tests/Program.cs +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License - */ - -using System; -using NUnitLite.TUnit; -using AutoTemplate; - -namespace XamarinForTizen.Tizen -{ - - class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication - { - private static App _app; - protected override void OnCreate() - { - base.OnCreate(); - - Console.WriteLine("TCT : OnCreate()"); - _app = new App(); - LoadApplication(_app); - - TRunner t = new TRunner(); - t.LoadTestsuite(); - t.Execute(); - } - - public static App getApp() - { - return _app; - } - static void Main(string[] args) - { - Console.WriteLine("TCT : Main()"); - var app = new Program(); - global::Xamarin.Forms.Platform.Tizen.Forms.Init(app); - app.Run(args); - } - } -} \ No newline at end of file