From be02e747252cd14b46a64dac539402008973b931 Mon Sep 17 00:00:00 2001 From: Jakob Date: Mon, 2 Jul 2018 20:11:45 +0200 Subject: [PATCH] Initial commit --- h-encore-auto.sln | 25 ++ h-encore-auto/App.xaml | 9 + h-encore-auto/App.xaml.cs | 16 + h-encore-auto/MainWindow.xaml | 32 ++ h-encore-auto/MainWindow.xaml.cs | 363 ++++++++++++++++++ h-encore-auto/Properties/AssemblyInfo.cs | 55 +++ .../Properties/Resources.Designer.cs | 63 +++ h-encore-auto/Properties/Resources.resx | 117 ++++++ h-encore-auto/Properties/Settings.Designer.cs | 26 ++ h-encore-auto/Properties/Settings.settings | 7 + h-encore-auto/app.config | 3 + h-encore-auto/h-encore-auto.csproj | 137 +++++++ h-encore-auto/packages.config | 5 + 13 files changed, 858 insertions(+) create mode 100644 h-encore-auto.sln create mode 100644 h-encore-auto/App.xaml create mode 100644 h-encore-auto/App.xaml.cs create mode 100644 h-encore-auto/MainWindow.xaml create mode 100644 h-encore-auto/MainWindow.xaml.cs create mode 100644 h-encore-auto/Properties/AssemblyInfo.cs create mode 100644 h-encore-auto/Properties/Resources.Designer.cs create mode 100644 h-encore-auto/Properties/Resources.resx create mode 100644 h-encore-auto/Properties/Settings.Designer.cs create mode 100644 h-encore-auto/Properties/Settings.settings create mode 100644 h-encore-auto/app.config create mode 100644 h-encore-auto/h-encore-auto.csproj create mode 100644 h-encore-auto/packages.config diff --git a/h-encore-auto.sln b/h-encore-auto.sln new file mode 100644 index 0000000..42ffdd6 --- /dev/null +++ b/h-encore-auto.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2035 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "h-encore-auto", "h-encore-auto\h-encore-auto.csproj", "{9F8577B2-16A2-4147-B264-308B68679F78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9F8577B2-16A2-4147-B264-308B68679F78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9F8577B2-16A2-4147-B264-308B68679F78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9F8577B2-16A2-4147-B264-308B68679F78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9F8577B2-16A2-4147-B264-308B68679F78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EA1569D4-A0AC-4F0A-9E26-B96D084A329C} + EndGlobalSection +EndGlobal diff --git a/h-encore-auto/App.xaml b/h-encore-auto/App.xaml new file mode 100644 index 0000000..7fb5fd7 --- /dev/null +++ b/h-encore-auto/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/h-encore-auto/App.xaml.cs b/h-encore-auto/App.xaml.cs new file mode 100644 index 0000000..193e704 --- /dev/null +++ b/h-encore-auto/App.xaml.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Windows; + +namespace h_encore_auto +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/h-encore-auto/MainWindow.xaml b/h-encore-auto/MainWindow.xaml new file mode 100644 index 0000000..3941468 --- /dev/null +++ b/h-encore-auto/MainWindow.xaml @@ -0,0 +1,32 @@ + + + +