From e445deff559cc1b2cef0bcce5eab4af0ebc4a70a Mon Sep 17 00:00:00 2001 From: zachdwyer Date: Sat, 8 Feb 2020 00:22:07 -0500 Subject: [PATCH] Add project files. --- App.config | 6 + App.xaml | 13 ++ App.xaml.cs | 17 ++ MainWindow.xaml | 145 +++++++++++++++ MainWindow.xaml.cs | 307 +++++++++++++++++++++++++++++++ Properties/AssemblyInfo.cs | 55 ++++++ Properties/Resources.Designer.cs | 133 +++++++++++++ Properties/Resources.resx | 142 ++++++++++++++ Properties/Settings.Designer.cs | 30 +++ Properties/Settings.settings | 7 + Resources/ZIP.png | Bin 0 -> 8453 bytes Resources/greencheck.png | Bin 0 -> 2968 bytes Resources/nes.png | Bin 0 -> 6518 bytes Resources/programicon.png | Bin 0 -> 10471 bytes Resources/unknown.png | Bin 0 -> 5090 bytes Resources/vectrex.png | Bin 0 -> 9727 bytes Resources/waiting.png | Bin 0 -> 1471 bytes Rom.cs | 119 ++++++++++++ RomSync.csproj | 129 +++++++++++++ RomSync.sln | 25 +++ packages.config | 5 + 21 files changed, 1133 insertions(+) create mode 100644 App.config create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings create mode 100644 Resources/ZIP.png create mode 100644 Resources/greencheck.png create mode 100644 Resources/nes.png create mode 100644 Resources/programicon.png create mode 100644 Resources/unknown.png create mode 100644 Resources/vectrex.png create mode 100644 Resources/waiting.png create mode 100644 Rom.cs create mode 100644 RomSync.csproj create mode 100644 RomSync.sln create mode 100644 packages.config diff --git a/App.config b/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..cc40b59 --- /dev/null +++ b/App.xaml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..866157b --- /dev/null +++ b/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 RomSync +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..255ea44 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + +