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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/AppManager/MainWindow.xaml.cs b/AppManager/MainWindow.xaml.cs
new file mode 100644
index 0000000..c727f5f
--- /dev/null
+++ b/AppManager/MainWindow.xaml.cs
@@ -0,0 +1,320 @@
+using iMobileDevice;
+using iMobileDevice.iDevice;
+using iMobileDevice.Lockdown;
+using iMobileDevice.Plist;
+
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Diagnostics;
+using System.Threading.Tasks;
+using System.Timers;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Media;
+
+namespace AppManager
+{
+ public partial class MainWindow : Window
+ {
+ private readonly IiDeviceApi idevice = LibiMobileDevice.Instance.iDevice;
+ private readonly ILockdownApi lockdown = LibiMobileDevice.Instance.Lockdown;
+
+ private iDeviceHandle deviceHandle;
+ private LockdownClientHandle lockdownHandle;
+
+ private string deviceType;
+ private string deviceName;
+ private string deviceVersion;
+ private string deviceUDID = "";
+
+ private string ipaPath = "";
+ private string selectedBundleID = "";
+
+ private bool gotDeviceInfo;
+
+ private List appList;
+
+ private readonly Timer deviceDetectorTimer;
+
+ public MainWindow()
+ {
+ InitializeComponent();
+ NativeLibraries.Load();
+ appList = new List();
+ deviceDetectorTimer = new Timer
+ {
+ Interval = 1000
+ };
+ deviceDetectorTimer.Elapsed += Event_deviceDetectorTimer_Tick;
+ }
+
+ private void Event_window_Loaded(object sender, RoutedEventArgs e)
+ {
+ deviceDetectorTimer.Start();
+ }
+
+ private void Event_deviceDetectorTimer_Tick(object sender, EventArgs e)
+ {
+ int count = 0;
+ if (idevice.idevice_get_device_list(out ReadOnlyCollection udids, ref count) == iDeviceError.NoDevice || count == 0)
+ {
+ deviceUDID = "";
+
+ Dispatcher.Invoke(
+ System.Windows.Threading.DispatcherPriority.Normal,
+ new Action(
+ delegate ()
+ {
+ installNewAppButton.IsEnabled = false;
+ removeSelectedAppButton.IsEnabled = false;
+ refreshAppListButton.IsEnabled = false;
+ window.Title = $"AppManager (No device)";
+ }
+ ));
+ if (gotDeviceInfo)
+ {
+ Dispatcher.Invoke(
+ System.Windows.Threading.DispatcherPriority.Normal,
+ new Action(
+ delegate ()
+ {
+ logListBox.Items.Add("Device disconnected.");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ installedAppsListView.ItemsSource = null;
+ }
+ ));
+ gotDeviceInfo = false;
+ }
+ }
+ else
+ {
+ if (!gotDeviceInfo)
+ {
+ try
+ {
+ Dispatcher.Invoke(
+ System.Windows.Threading.DispatcherPriority.Normal,
+ new Action(
+ delegate ()
+ {
+ logListBox.Items.Add("Connecting to device...");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ }
+ ));
+ idevice.idevice_new(out deviceHandle, udids[0]).ThrowOnError();
+ lockdown.lockdownd_client_new_with_handshake(deviceHandle, out lockdownHandle, "absl").ThrowOnError();
+
+ // get device info
+ lockdown.lockdownd_get_device_name(lockdownHandle, out deviceName).ThrowOnError();
+ lockdown.lockdownd_get_value(lockdownHandle, null, "ProductVersion", out PlistHandle temp).ThrowOnError();
+ temp.Api.Plist.plist_get_string_val(temp, out deviceVersion);
+ lockdown.lockdownd_get_value(lockdownHandle, null, "ProductType", out temp).ThrowOnError();
+ temp.Api.Plist.plist_get_string_val(temp, out deviceType);
+
+ temp.Dispose();
+
+ deviceUDID = udids[0];
+
+ Task.Run(new Action(GetAppsThread));
+
+ Dispatcher.Invoke(
+ System.Windows.Threading.DispatcherPriority.Normal,
+ new Action(
+ delegate ()
+ {
+ installedAppsListView.ItemsSource = appList;
+ window.Title = $"AppManager ({deviceName}, {deviceType}, iOS {deviceVersion})";
+ installNewAppButton.IsEnabled = true;
+ removeSelectedAppButton.IsEnabled = true;
+ refreshAppListButton.IsEnabled = true;
+ }
+ ));
+ gotDeviceInfo = true;
+ }
+ catch (Exception ex)
+ {
+ deviceUDID = "";
+ Dispatcher.Invoke(
+ System.Windows.Threading.DispatcherPriority.Normal,
+ new Action(
+ delegate ()
+ {
+ installNewAppButton.IsEnabled = false;
+ removeSelectedAppButton.IsEnabled = false;
+ refreshAppListButton.IsEnabled = false;
+ window.Title = $"AppManager (No device)";
+ logListBox.Items.Add($"Could not connect to device: {ex.Message}");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ }
+ ));
+ gotDeviceInfo = false; // never should matter but just in case
+ }
+ }
+ }
+ }
+
+ private void Event_installNewAppButton_Click(object sender, RoutedEventArgs e)
+ {
+ var openIPAFile = new Microsoft.Win32.OpenFileDialog
+ {
+ FileName = "app",
+ DefaultExt = ".ipa",
+ Filter = "iOS Apps (.ipa)|*.ipa"
+ };
+
+ openIPAFile.ShowDialog();
+
+ ipaPath = openIPAFile.FileName;
+
+ logListBox.Items.Add($"Attempting install of {ipaPath}");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ Task.Run(new Action(InstallAppThread));
+ }
+
+ private void Event_removeSelectedAppButton_Click(object sender, RoutedEventArgs e)
+ {
+ selectedBundleID = ((DeviceApp)installedAppsListView.SelectedItem).CFBundleIdentifier;
+
+ logListBox.Items.Add($"Attempting removal of of {selectedBundleID}");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ Task.Run(new Action(RemoveAppThread));
+ }
+
+ private void Event_refreshAppListButton_Click(object sender, RoutedEventArgs e)
+ {
+ Task.Run(new Action(GetAppsThread));
+ installedAppsListView.ItemsSource = null;
+ installedAppsListView.ItemsSource = appList;
+ logListBox.Items.Add("Refreshed.");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ }
+
+ private void RemoveAppThread()
+ {
+ var proc = new Process
+ {
+ StartInfo = new ProcessStartInfo
+ {
+ FileName = "win-x86\\ideviceinstaller.exe",
+ Arguments = $"-u {deviceUDID} --uninstall \"{selectedBundleID}\"",
+ UseShellExecute = false,
+ RedirectStandardOutput = true,
+ RedirectStandardError = true,
+ CreateNoWindow = true
+ }
+ };
+ proc.Start();
+ while (!proc.StandardOutput.EndOfStream && !proc.StandardError.EndOfStream)
+ {
+ string line = proc.StandardOutput.ReadLine();
+ if (line == null || line.Trim() == "") line = proc.StandardError.ReadLine();
+ Dispatcher.Invoke(() =>
+ {
+ logListBox.Items.Add(line);
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ });
+ }
+ Dispatcher.Invoke(() =>
+ {
+ logListBox.Items.Add($"Process ended with code {proc.ExitCode} {(proc.ExitCode == 0 ? "(Success)" : "")}");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ Task.Run(new Action(GetAppsThread));
+ installedAppsListView.ItemsSource = null;
+ installedAppsListView.ItemsSource = appList;
+ });
+ }
+
+ private void InstallAppThread()
+ {
+ var proc = new Process
+ {
+ StartInfo = new ProcessStartInfo
+ {
+ FileName = "win-x86\\ideviceinstaller.exe",
+ Arguments = $"-u {deviceUDID} --install \"{ipaPath}\"",
+ UseShellExecute = false,
+ RedirectStandardOutput = true,
+ RedirectStandardError = true,
+ CreateNoWindow = true
+ }
+ };
+ proc.Start();
+ while (!proc.StandardOutput.EndOfStream && !proc.StandardError.EndOfStream)
+ {
+ string line = proc.StandardOutput.ReadLine();
+ if (line == null || line.Trim() == "") line = proc.StandardError.ReadLine();
+ Dispatcher.Invoke(() =>
+ {
+ logListBox.Items.Add(line);
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ });
+ }
+ Dispatcher.Invoke(() =>
+ {
+ logListBox.Items.Add($"Process ended with code {proc.ExitCode} {(proc.ExitCode == 0 ? "(Success)" : "")}");
+ var border = (Border)VisualTreeHelper.GetChild(logListBox, 0);
+ var scrollViewer = (ScrollViewer)VisualTreeHelper.GetChild(border, 0);
+ scrollViewer.ScrollToBottom();
+ Task.Run(new Action(GetAppsThread));
+ installedAppsListView.ItemsSource = null;
+ installedAppsListView.ItemsSource = appList;
+ });
+ }
+
+ private void GetAppsThread()
+ {
+ var proc = new Process
+ {
+ StartInfo = new ProcessStartInfo
+ {
+ FileName = "win-x86\\ideviceinstaller.exe",
+ Arguments = $"-u {deviceUDID} -l",
+ UseShellExecute = false,
+ RedirectStandardOutput = true,
+ CreateNoWindow = true
+ }
+ };
+ proc.Start();
+ appList = new List();
+ appList.Clear();
+ while (!proc.StandardOutput.EndOfStream)
+ {
+ string line = proc.StandardOutput.ReadLine();
+ if (line == null || line.Trim() == "" || line.Contains("CFBundleIdentifier, CFBundleVersion, CFBundleDisplayName")) continue;
+ appList.Add(new DeviceApp()
+ {
+ CFBundleIdentifier = line.Split(',')[0],
+ CFBundleVersion = line.Split(',')[1].Trim().Replace("\"", ""),
+ CFBundleDisplayName = line.Split(',')[2].Trim().Replace("\"", ""),
+ });
+ }
+ proc.WaitForExit();
+ }
+ }
+
+ public class DeviceApp
+ {
+ public string CFBundleIdentifier { get; set; }
+ public string CFBundleVersion { get; set; }
+ public string CFBundleDisplayName { get; set; }
+ }
+}
diff --git a/AppManager/Properties/AssemblyInfo.cs b/AppManager/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..5eaeb07
--- /dev/null
+++ b/AppManager/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("AppManager")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("AppManager")]
+[assembly: AssemblyCopyright("Copyright © 2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+//In order to begin building localizable applications, set
+//CultureYouAreCodingWith in your .csproj file
+//inside a . For example, if you are using US english
+//in your source files, set the to en-US. Then uncomment
+//the NeutralResourceLanguage attribute below. Update the "en-US" in
+//the line below to match the UICulture setting in the project file.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
+
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/AppManager/Properties/Resources.Designer.cs b/AppManager/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..308a0da
--- /dev/null
+++ b/AppManager/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace AppManager.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AppManager.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/AppManager/Properties/Resources.resx b/AppManager/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/AppManager/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/AppManager/Properties/Settings.Designer.cs b/AppManager/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..b0def1a
--- /dev/null
+++ b/AppManager/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace AppManager.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/AppManager/Properties/Settings.settings b/AppManager/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/AppManager/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AppManager/packages.config b/AppManager/packages.config
new file mode 100644
index 0000000..81b623b
--- /dev/null
+++ b/AppManager/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file