[Non-ACR][Updated .gitignore file] 06/171806/1
authorSanghoon Lee <shooney.lee@samsung.com>
Wed, 7 Mar 2018 09:59:54 +0000 (18:59 +0900)
committerSanghoon Lee <shooney.lee@samsung.com>
Wed, 7 Mar 2018 09:59:54 +0000 (18:59 +0900)
Change-Id: Iadb02d1cf642046e5be3fff304bce8b3f8e13cb5

.gitignore
tct-suite-vs/Tizen.WebView.Tests/Program.cs [deleted file]

index a99a3e2..06fda34 100755 (executable)
@@ -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 (executable)
index aa1ff4c..0000000
+++ /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