From 02fa84ddfc261d1096df7dcafce86a3220005724 Mon Sep 17 00:00:00 2001 From: kawaiizenbo <48113593+kawaiizenbo@users.noreply.github.com> Date: Sun, 9 Jan 2022 18:22:49 -0700 Subject: [PATCH] Add project files. --- AppManager.sln | 25 ++ AppManager/App.config | 6 + AppManager/App.xaml | 9 + AppManager/App.xaml.cs | 17 ++ AppManager/AppManager.csproj | 110 +++++++ AppManager/MainWindow.xaml | 39 +++ AppManager/MainWindow.xaml.cs | 320 ++++++++++++++++++++ AppManager/Properties/AssemblyInfo.cs | 55 ++++ AppManager/Properties/Resources.Designer.cs | 71 +++++ AppManager/Properties/Resources.resx | 117 +++++++ AppManager/Properties/Settings.Designer.cs | 30 ++ AppManager/Properties/Settings.settings | 7 + AppManager/packages.config | 4 + 13 files changed, 810 insertions(+) create mode 100644 AppManager.sln create mode 100644 AppManager/App.config create mode 100644 AppManager/App.xaml create mode 100644 AppManager/App.xaml.cs create mode 100644 AppManager/AppManager.csproj create mode 100644 AppManager/MainWindow.xaml create mode 100644 AppManager/MainWindow.xaml.cs create mode 100644 AppManager/Properties/AssemblyInfo.cs create mode 100644 AppManager/Properties/Resources.Designer.cs create mode 100644 AppManager/Properties/Resources.resx create mode 100644 AppManager/Properties/Settings.Designer.cs create mode 100644 AppManager/Properties/Settings.settings create mode 100644 AppManager/packages.config diff --git a/AppManager.sln b/AppManager.sln new file mode 100644 index 0000000..e2fc08a --- /dev/null +++ b/AppManager.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31912.275 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppManager", "AppManager\AppManager.csproj", "{D9BE1C6C-1FC3-427E-A9EC-E2D8246C18EB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D9BE1C6C-1FC3-427E-A9EC-E2D8246C18EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D9BE1C6C-1FC3-427E-A9EC-E2D8246C18EB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D9BE1C6C-1FC3-427E-A9EC-E2D8246C18EB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D9BE1C6C-1FC3-427E-A9EC-E2D8246C18EB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C72BC204-54EB-4E6F-A4B9-BF0287B9AB4E} + EndGlobalSection +EndGlobal diff --git a/AppManager/App.config b/AppManager/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/AppManager/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/AppManager/App.xaml b/AppManager/App.xaml new file mode 100644 index 0000000..6c0e32d --- /dev/null +++ b/AppManager/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/AppManager/App.xaml.cs b/AppManager/App.xaml.cs new file mode 100644 index 0000000..de9fa84 --- /dev/null +++ b/AppManager/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 AppManager +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/AppManager/AppManager.csproj b/AppManager/AppManager.csproj new file mode 100644 index 0000000..04664b3 --- /dev/null +++ b/AppManager/AppManager.csproj @@ -0,0 +1,110 @@ + + + + + Debug + AnyCPU + {D9BE1C6C-1FC3-427E-A9EC-E2D8246C18EB} + WinExe + AppManager + AppManager + v4.5 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\iMobileDevice-net.1.3.17\lib\net45\iMobileDevice-net.dll + + + + + + + + + + + 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 + + + + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + \ No newline at end of file diff --git a/AppManager/MainWindow.xaml b/AppManager/MainWindow.xaml new file mode 100644 index 0000000..6bece38 --- /dev/null +++ b/AppManager/MainWindow.xaml @@ -0,0 +1,39 @@ + + +