aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Uninstall/Program.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-27 16:07:51 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-27 16:07:51 -0500
commit4d71fc1d42fb26d759f2691ec9f26c4273b81688 (patch)
tree1747ec668aaf3e60d4ddc82a3915dbace8d44dcc /MediaBrowser.Server.Uninstall/Program.cs
parentff4ee7ab9c41f9756e1db6f25f701c8ca69cecf2 (diff)
remvoed CO uninstall project
Diffstat (limited to 'MediaBrowser.Server.Uninstall/Program.cs')
-rw-r--r--MediaBrowser.Server.Uninstall/Program.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/MediaBrowser.Server.Uninstall/Program.cs b/MediaBrowser.Server.Uninstall/Program.cs
deleted file mode 100644
index 4374e970c..000000000
--- a/MediaBrowser.Server.Uninstall/Program.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using MediaBrowser.ClickOnce;
-using System;
-using System.IO;
-
-namespace MediaBrowser.Server.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);
- }
- }
- }
-}