From b56c9b2a47234b065afb6a3fbcf2eca7c729c1b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20=C3=96man?= Date: Thu, 10 Jan 2019 21:48:30 +0100 Subject: [PATCH] Async part one ready --- Async/App.config | 6 ++ Async/App.xaml | 9 ++ Async/App.xaml.cs | 17 ++++ Async/Async.csproj | 98 ++++++++++++++++++++ Async/MainWindow.xaml | 14 +++ Async/MainWindow.xaml.cs | 59 ++++++++++++ Async/Properties/AssemblyInfo.cs | 55 +++++++++++ Async/Properties/Resources.Designer.cs | 71 ++++++++++++++ Async/Properties/Resources.resx | 117 ++++++++++++++++++++++++ Async/Properties/Settings.Designer.cs | 30 ++++++ Async/Properties/Settings.settings | 7 ++ AsyncProgram/App.config | 6 ++ AsyncProgram/AsyncProgram.csproj | 53 +++++++++++ AsyncProgram/Program.cs | 15 +++ AsyncProgram/Properties/AssemblyInfo.cs | 36 ++++++++ TrainingAdvancedTechniques.sln | 12 +++ 16 files changed, 605 insertions(+) create mode 100644 Async/App.config create mode 100644 Async/App.xaml create mode 100644 Async/App.xaml.cs create mode 100644 Async/Async.csproj create mode 100644 Async/MainWindow.xaml create mode 100644 Async/MainWindow.xaml.cs create mode 100644 Async/Properties/AssemblyInfo.cs create mode 100644 Async/Properties/Resources.Designer.cs create mode 100644 Async/Properties/Resources.resx create mode 100644 Async/Properties/Settings.Designer.cs create mode 100644 Async/Properties/Settings.settings create mode 100644 AsyncProgram/App.config create mode 100644 AsyncProgram/AsyncProgram.csproj create mode 100644 AsyncProgram/Program.cs create mode 100644 AsyncProgram/Properties/AssemblyInfo.cs diff --git a/Async/App.config b/Async/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/Async/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Async/App.xaml b/Async/App.xaml new file mode 100644 index 0000000..b2600c9 --- /dev/null +++ b/Async/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Async/App.xaml.cs b/Async/App.xaml.cs new file mode 100644 index 0000000..321362c --- /dev/null +++ b/Async/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Async +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Async/Async.csproj b/Async/Async.csproj new file mode 100644 index 0000000..0917358 --- /dev/null +++ b/Async/Async.csproj @@ -0,0 +1,98 @@ + + + + + Debug + AnyCPU + {489BDD31-47F4-43B2-ABA4-25260BD422A5} + WinExe + Async + Async + v4.6.1 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + \ No newline at end of file diff --git a/Async/MainWindow.xaml b/Async/MainWindow.xaml new file mode 100644 index 0000000..eb4aeed --- /dev/null +++ b/Async/MainWindow.xaml @@ -0,0 +1,14 @@ + + +