From 4c1d168f689134acb97765dd99801b06904be8ae Mon Sep 17 00:00:00 2001 From: Alee14 Date: Thu, 22 Aug 2019 18:02:25 -0400 Subject: Inital commit --- .gitignore | 2 ++ .vs/HTPC Launcher/DesignTimeBuild/.dtbcache | Bin 0 -> 294628 bytes .vs/HTPC Launcher/v16/.suo | Bin 0 -> 30720 bytes .vs/HTPC Launcher/v16/Server/sqlite3/db.lock | 0 .vs/HTPC Launcher/v16/Server/sqlite3/storage.ide | Bin 0 -> 1150976 bytes .vs/VSWorkspaceState.json | 7 ++++ .vs/slnx.sqlite | Bin 0 -> 299008 bytes .vscode/launch.json | 27 +++++++++++++++ .vscode/tasks.json | 42 +++++++++++++++++++++++ App.xaml | 9 +++++ App.xaml.cs | 17 +++++++++ HTPC Launcher.csproj | 10 ++++++ HTPC Launcher.sln | 25 ++++++++++++++ MainWindow.xaml | 15 ++++++++ MainWindow.xaml.cs | 38 ++++++++++++++++++++ 15 files changed, 192 insertions(+) create mode 100644 .gitignore create mode 100644 .vs/HTPC Launcher/DesignTimeBuild/.dtbcache create mode 100644 .vs/HTPC Launcher/v16/.suo create mode 100644 .vs/HTPC Launcher/v16/Server/sqlite3/db.lock create mode 100644 .vs/HTPC Launcher/v16/Server/sqlite3/storage.ide create mode 100644 .vs/VSWorkspaceState.json create mode 100644 .vs/slnx.sqlite create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 HTPC Launcher.csproj create mode 100644 HTPC Launcher.sln create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d86ba9f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +obj/ +bin/ \ No newline at end of file diff --git a/.vs/HTPC Launcher/DesignTimeBuild/.dtbcache b/.vs/HTPC Launcher/DesignTimeBuild/.dtbcache new file mode 100644 index 0000000..bd9882e Binary files /dev/null and b/.vs/HTPC Launcher/DesignTimeBuild/.dtbcache differ diff --git a/.vs/HTPC Launcher/v16/.suo b/.vs/HTPC Launcher/v16/.suo new file mode 100644 index 0000000..06a5be3 Binary files /dev/null and b/.vs/HTPC Launcher/v16/.suo differ diff --git a/.vs/HTPC Launcher/v16/Server/sqlite3/db.lock b/.vs/HTPC Launcher/v16/Server/sqlite3/db.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/HTPC Launcher/v16/Server/sqlite3/storage.ide b/.vs/HTPC Launcher/v16/Server/sqlite3/storage.ide new file mode 100644 index 0000000..4055610 Binary files /dev/null and b/.vs/HTPC Launcher/v16/Server/sqlite3/storage.ide differ diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..09a8940 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,7 @@ +{ + "ExpandedNodes": [ + "" + ], + "SelectedNode": "\\MainWindow.xaml", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..a321ce2 Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3b20684 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/bin/Debug/netcoreapp3.0/HTPC Launcher.dll", + "args": [], + "cwd": "${workspaceFolder}", + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..5b8796b --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,42 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/HTPC Launcher.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/HTPC Launcher.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/HTPC Launcher.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..49d2bd9 --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..77cec7e --- /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 HTPC_Launcher +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/HTPC Launcher.csproj b/HTPC Launcher.csproj new file mode 100644 index 0000000..dd7808b --- /dev/null +++ b/HTPC Launcher.csproj @@ -0,0 +1,10 @@ + + + + WinExe + netcoreapp3.0 + HTPC_Launcher + true + + + \ No newline at end of file diff --git a/HTPC Launcher.sln b/HTPC Launcher.sln new file mode 100644 index 0000000..29cba39 --- /dev/null +++ b/HTPC Launcher.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29102.190 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HTPC Launcher", "HTPC Launcher.csproj", "{34F7A0BA-3964-45DA-9C68-48EC04D4120B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {34F7A0BA-3964-45DA-9C68-48EC04D4120B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {34F7A0BA-3964-45DA-9C68-48EC04D4120B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {34F7A0BA-3964-45DA-9C68-48EC04D4120B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {34F7A0BA-3964-45DA-9C68-48EC04D4120B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {58EB3C11-9FBA-4B86-8F7C-5F4F1E2559C8} + EndGlobalSection +EndGlobal diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..b025276 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,15 @@ + + +