diff --git a/Demo.WindowsPresentation/Source/App.cs b/Demo.WindowsPresentation/Source/App.cs deleted file mode 100644 --- a/Demo.WindowsPresentation/Source/App.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Windows; -using GMap.NET; - -namespace Demo.WindowsPresentation -{ - public partial class App : Application - { - [STAThread()] - static void Main() - { - // Create the application. - Application app = new Application(); - - // Create the main window. - MainWindow win = new MainWindow(); - - // Launch the application and show the main window. - app.Run(win); - } - } - - public class Dummy - { - - } - - public struct PointAndInfo - { - public PointLatLng Point; - public string Info; - - public PointAndInfo(PointLatLng point, string info) - { - Point = point; - Info = info; - } - } -}