aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.UI.Uninstall/Program.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-23 10:58:08 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-23 10:58:08 -0500
commit17c1fd576057bdd2d6aea517d733fe8af6e6b2ba (patch)
tree660f47e816a8599aabdb7ee47f3cde64c72c3f4d /MediaBrowser.UI.Uninstall/Program.cs
parent33ed929b526acbda696f00f5966917ebd6a9ded2 (diff)
moved ui to it's own repo
Diffstat (limited to 'MediaBrowser.UI.Uninstall/Program.cs')
-rw-r--r--MediaBrowser.UI.Uninstall/Program.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/MediaBrowser.UI.Uninstall/Program.cs b/MediaBrowser.UI.Uninstall/Program.cs
deleted file mode 100644
index 14c3d3abf..000000000
--- a/MediaBrowser.UI.Uninstall/Program.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using MediaBrowser.ClickOnce;
-using System;
-using System.IO;
-
-namespace MediaBrowser.UI.Uninstall
-{
- /// <summary>
- /// Class Program
- /// </summary>
- class Program
- {
- /// <summary>
- /// Defines the entry point of the application.
- /// </summary>
- /// <param name="args">The args.</param>
- static void Main(string[] args)
- {
- new ClickOnceHelper(Globals.PublisherName, Globals.ProductName, Globals.SuiteName).Uninstall();
-
- // Delete all files from publisher folder and folder itself on uninstall
-
- var publisherFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), Globals.PublisherName);
-
- if (Directory.Exists(publisherFolder))
- {
- Directory.Delete(publisherFolder, true);
- }
- }
- }
-}