aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-04 02:19:04 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-04 02:19:04 -0500
commitd3b9afef2f3895daf91056938a92d6f51c8c834b (patch)
tree203bbaa89d5f7421385b0b74c768a6ac2698051f
parent9cdda84b062d990af285d7f25507c892ce05e180 (diff)
removed the clickonce assembly
-rw-r--r--MediaBrowser.ClickOnce/ApplicationUpdateCheck.cs106
-rw-r--r--MediaBrowser.ClickOnce/ApplicationUpdater.cs92
-rw-r--r--MediaBrowser.ClickOnce/ClickOnceHelper.cs255
-rw-r--r--MediaBrowser.ClickOnce/MediaBrowser.ClickOnce.csproj66
-rw-r--r--MediaBrowser.ClickOnce/Properties/AssemblyInfo.cs31
-rw-r--r--MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj4
-rw-r--r--MediaBrowser.sln16
-rw-r--r--Nuget/MediaBrowser.Common.Internal.nuspec5
-rw-r--r--Nuget/MediaBrowser.Common.nuspec2
-rw-r--r--Nuget/MediaBrowser.Server.Core.nuspec4
10 files changed, 5 insertions, 576 deletions
diff --git a/MediaBrowser.ClickOnce/ApplicationUpdateCheck.cs b/MediaBrowser.ClickOnce/ApplicationUpdateCheck.cs
deleted file mode 100644
index 72c42f586..000000000
--- a/MediaBrowser.ClickOnce/ApplicationUpdateCheck.cs
+++ /dev/null
@@ -1,106 +0,0 @@
-using MediaBrowser.Model.Updates;
-using System;
-using System.Deployment.Application;
-using System.Threading;
-using System.Threading.Tasks;
-
-namespace MediaBrowser.ClickOnce
-{
- /// <summary>
- /// Class ApplicationUpdateCheck
- /// </summary>
- public class ApplicationUpdateCheck
- {
- /// <summary>
- /// The _task completion source
- /// </summary>
- private TaskCompletionSource<CheckForUpdateResult> _taskCompletionSource;
-
- /// <summary>
- /// The _progress
- /// </summary>
- private IProgress<double> _progress;
-
- /// <summary>
- /// Checks for application update.
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <param name="progress">The progress.</param>
- /// <returns>Task{CheckForUpdateCompletedEventArgs}.</returns>
- /// <exception cref="System.InvalidOperationException">Current deployment is not a ClickOnce deployment</exception>
- public Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress)
- {
- if (!ApplicationDeployment.IsNetworkDeployed)
- {
- throw new InvalidOperationException("Current deployment is not network deployed.");
- }
-
- _progress = progress;
-
- _taskCompletionSource = new TaskCompletionSource<CheckForUpdateResult>();
-
- var deployment = ApplicationDeployment.CurrentDeployment;
-
- cancellationToken.Register(deployment.CheckForUpdateAsyncCancel);
-
- cancellationToken.ThrowIfCancellationRequested();
-
- deployment.CheckForUpdateCompleted += deployment_CheckForUpdateCompleted;
- deployment.CheckForUpdateProgressChanged += deployment_CheckForUpdateProgressChanged;
-
- deployment.CheckForUpdateAsync();
-
- return _taskCompletionSource.Task;
- }
-
- /// <summary>
- /// To the result.
- /// </summary>
- /// <param name="args">The <see cref="CheckForUpdateCompletedEventArgs" /> instance containing the event data.</param>
- /// <returns>CheckForUpdateResult.</returns>
- private CheckForUpdateResult ToResult(CheckForUpdateCompletedEventArgs args)
- {
- return new CheckForUpdateResult
- {
- AvailableVersion = args.AvailableVersion,
- IsUpdateAvailable = args.UpdateAvailable
- };
- }
-
- /// <summary>
- /// Handles the CheckForUpdateCompleted event of the deployment control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="CheckForUpdateCompletedEventArgs" /> instance containing the event data.</param>
- void deployment_CheckForUpdateCompleted(object sender, CheckForUpdateCompletedEventArgs e)
- {
- var deployment = ApplicationDeployment.CurrentDeployment;
-
- deployment.CheckForUpdateCompleted -= deployment_CheckForUpdateCompleted;
- deployment.CheckForUpdateProgressChanged -= deployment_CheckForUpdateProgressChanged;
-
- if (e.Error != null)
- {
- _taskCompletionSource.SetException(e.Error);
- }
- else if (e.Cancelled)
- {
- _taskCompletionSource.SetCanceled();
- }
- else
- {
- _taskCompletionSource.SetResult(ToResult(e));
- }
- }
-
- /// <summary>
- /// Handles the CheckForUpdateProgressChanged event of the deployment control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="DeploymentProgressChangedEventArgs" /> instance containing the event data.</param>
- void deployment_CheckForUpdateProgressChanged(object sender, DeploymentProgressChangedEventArgs e)
- {
- _progress.Report(e.ProgressPercentage);
- }
- }
-}
diff --git a/MediaBrowser.ClickOnce/ApplicationUpdater.cs b/MediaBrowser.ClickOnce/ApplicationUpdater.cs
deleted file mode 100644
index 29af406f1..000000000
--- a/MediaBrowser.ClickOnce/ApplicationUpdater.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-using System;
-using System.ComponentModel;
-using System.Deployment.Application;
-using System.Threading;
-using System.Threading.Tasks;
-
-namespace MediaBrowser.ClickOnce
-{
- /// <summary>
- /// Class ApplicationUpdater
- /// </summary>
- public class ApplicationUpdater
- {
- /// <summary>
- /// The _task completion source
- /// </summary>
- private TaskCompletionSource<AsyncCompletedEventArgs> _taskCompletionSource;
-
- /// <summary>
- /// The _progress
- /// </summary>
- private IProgress<double> _progress;
-
- /// <summary>
- /// Updates the application
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <param name="progress">The progress.</param>
- /// <returns>Task{AsyncCompletedEventArgs}.</returns>
- /// <exception cref="System.InvalidOperationException">Current deployment is not network deployed.</exception>
- public Task<AsyncCompletedEventArgs> UpdateApplication(CancellationToken cancellationToken, IProgress<double> progress)
- {
- if (!ApplicationDeployment.IsNetworkDeployed)
- {
- throw new InvalidOperationException("Current deployment is not network deployed.");
- }
-
- _progress = progress;
-
- _taskCompletionSource = new TaskCompletionSource<AsyncCompletedEventArgs>();
-
- var deployment = ApplicationDeployment.CurrentDeployment;
-
- cancellationToken.Register(deployment.UpdateAsyncCancel);
-
- cancellationToken.ThrowIfCancellationRequested();
-
- deployment.UpdateCompleted += deployment_UpdateCompleted;
- deployment.UpdateProgressChanged += deployment_UpdateProgressChanged;
-
- deployment.UpdateAsync();
-
- return _taskCompletionSource.Task;
- }
-
- /// <summary>
- /// Handles the UpdateCompleted event of the deployment control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="AsyncCompletedEventArgs" /> instance containing the event data.</param>
- void deployment_UpdateCompleted(object sender, AsyncCompletedEventArgs e)
- {
- var deployment = ApplicationDeployment.CurrentDeployment;
-
- deployment.UpdateCompleted -= deployment_UpdateCompleted;
- deployment.UpdateProgressChanged -= deployment_UpdateProgressChanged;
-
- if (e.Error != null)
- {
- _taskCompletionSource.SetException(e.Error);
- }
- else if (e.Cancelled)
- {
- _taskCompletionSource.SetCanceled();
- }
- else
- {
- _taskCompletionSource.SetResult(e);
- }
- }
-
- /// <summary>
- /// Handles the UpdateProgressChanged event of the deployment control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="DeploymentProgressChangedEventArgs" /> instance containing the event data.</param>
- void deployment_UpdateProgressChanged(object sender, DeploymentProgressChangedEventArgs e)
- {
- _progress.Report(e.ProgressPercentage);
- }
- }
-}
diff --git a/MediaBrowser.ClickOnce/ClickOnceHelper.cs b/MediaBrowser.ClickOnce/ClickOnceHelper.cs
deleted file mode 100644
index c86332ccf..000000000
--- a/MediaBrowser.ClickOnce/ClickOnceHelper.cs
+++ /dev/null
@@ -1,255 +0,0 @@
-using System.Deployment.Application;
-using Microsoft.Win32;
-using System;
-using System.Diagnostics;
-using System.IO;
-using System.Linq;
-using System.Reflection;
-using System.Security.AccessControl;
-
-namespace MediaBrowser.ClickOnce
-{
- /// <summary>
- /// Class ClickOnceHelper
- /// </summary>
- public class ClickOnceHelper
- {
- /// <summary>
- /// The uninstall string
- /// </summary>
- private const string UninstallString = "UninstallString";
- /// <summary>
- /// The display name key
- /// </summary>
- private const string DisplayNameKey = "DisplayName";
- /// <summary>
- /// The uninstall string file
- /// </summary>
- private const string UninstallStringFile = "UninstallString.bat";
- /// <summary>
- /// The appref extension
- /// </summary>
- private const string ApprefExtension = ".appref-ms";
- /// <summary>
- /// The uninstall registry key
- /// </summary>
- private readonly RegistryKey UninstallRegistryKey;
-
- /// <summary>
- /// Gets the location.
- /// </summary>
- /// <value>The location.</value>
- private static string Location
- {
- get { return Assembly.GetExecutingAssembly().Location; }
- }
-
- /// <summary>
- /// Gets a value indicating whether this instance is network deployed.
- /// </summary>
- /// <value><c>true</c> if this instance is network deployed; otherwise, <c>false</c>.</value>
- public static bool IsNetworkDeployed
- {
- get { return ApplicationDeployment.IsNetworkDeployed; }
- }
-
- /// <summary>
- /// Gets the name of the publisher.
- /// </summary>
- /// <value>The name of the publisher.</value>
- public string PublisherName { get; private set; }
- /// <summary>
- /// Gets the name of the product.
- /// </summary>
- /// <value>The name of the product.</value>
- public string ProductName { get; private set; }
- /// <summary>
- /// Gets the uninstall file.
- /// </summary>
- /// <value>The uninstall file.</value>
- public string UninstallFile { get; private set; }
- /// <summary>
- /// Gets the name of the suite.
- /// </summary>
- /// <value>The name of the suite.</value>
- public string SuiteName { get; private set; }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="ClickOnceHelper" /> class.
- /// </summary>
- /// <param name="publisherName">Name of the publisher.</param>
- /// <param name="productName">Name of the product.</param>
- /// <param name="suiteName">Name of the suite.</param>
- public ClickOnceHelper(string publisherName, string productName, string suiteName)
- {
- PublisherName = publisherName;
- ProductName = productName;
- SuiteName = suiteName;
-
- var publisherFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), PublisherName);
-
- if (!Directory.Exists(publisherFolder))
- {
- Directory.CreateDirectory(publisherFolder);
- }
-
- UninstallFile = Path.Combine(publisherFolder, UninstallStringFile);
-
- UninstallRegistryKey = GetUninstallRegistryKeyByProductName(ProductName);
- }
-
- /// <summary>
- /// Gets the shortcut path.
- /// </summary>
- /// <returns>System.String.</returns>
- private string GetShortcutPath()
- {
- var allProgramsPath = Environment.GetFolderPath(Environment.SpecialFolder.Programs);
-
- var shortcutPath = Path.Combine(allProgramsPath, PublisherName);
-
- if (!string.IsNullOrEmpty(SuiteName))
- {
- shortcutPath = Path.Combine(shortcutPath, SuiteName);
- }
-
- return Path.Combine(shortcutPath, ProductName) + ApprefExtension;
- }
-
- /// <summary>
- /// Gets the startup shortcut path.
- /// </summary>
- /// <returns>System.String.</returns>
- private string GetStartupShortcutPath()
- {
- var startupPath = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
-
- return Path.Combine(startupPath, ProductName) + ApprefExtension;
- }
-
- /// <summary>
- /// Adds the shortcut to startup.
- /// </summary>
- public void AddShortcutToStartup()
- {
- var startupPath = GetStartupShortcutPath();
-
- if (!File.Exists(startupPath))
- {
- File.Copy(GetShortcutPath(), startupPath);
- }
- }
-
- /// <summary>
- /// Removes the shortcut from startup.
- /// </summary>
- public void RemoveShortcutFromStartup()
- {
- var startupPath = GetStartupShortcutPath();
-
- if (File.Exists(startupPath))
- {
- File.Delete(startupPath);
- }
- }
-
- /// <summary>
- /// Updates the uninstall parameters.
- /// </summary>
- /// <param name="uninstallerFileName">Name of the uninstaller file.</param>
- public void UpdateUninstallParameters(string uninstallerFileName)
- {
- if (UninstallRegistryKey != null)
- {
- UpdateUninstallString(uninstallerFileName);
- }
- }
-
- /// <summary>
- /// Gets the name of the uninstall registry key by product.
- /// </summary>
- /// <param name="productName">Name of the product.</param>
- /// <returns>RegistryKey.</returns>
- private RegistryKey GetUninstallRegistryKeyByProductName(string productName)
- {
- var subKey = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Uninstall");
-
- if (subKey == null)
- {
- return null;
- }
-
- return subKey.GetSubKeyNames()
- .Select(name => subKey.OpenSubKey(name, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryRights.QueryValues | RegistryRights.ReadKey | RegistryRights.SetValue))
- .Where(application => application != null)
- .FirstOrDefault(application => application.GetValueNames().Where(appKey => appKey.Equals(DisplayNameKey)).Any(appKey => application.GetValue(appKey).Equals(productName)));
- }
-
- /// <summary>
- /// Updates the uninstall string.
- /// </summary>
- /// <param name="uninstallerFileName">Name of the uninstaller file.</param>
- private void UpdateUninstallString(string uninstallerFileName)
- {
- var uninstallString = (string)UninstallRegistryKey.GetValue(UninstallString);
-
- if (!string.IsNullOrEmpty(UninstallFile) && uninstallString.StartsWith("rundll32.exe", StringComparison.OrdinalIgnoreCase))
- {
- File.WriteAllText(UninstallFile, uninstallString);
- }
-
- var str = String.Format("\"{0}\" uninstall", Path.Combine(Path.GetDirectoryName(Location), uninstallerFileName));
-
- UninstallRegistryKey.SetValue(UninstallString, str);
- }
-
- /// <summary>
- /// Uninstalls this instance.
- /// </summary>
- public void Uninstall()
- {
- RemoveShortcutFromStartup();
-
- var uninstallString = File.ReadAllText(UninstallFile);
-
- new Process
- {
- StartInfo =
- {
- Arguments = uninstallString.Substring(uninstallString.IndexOf(" ", StringComparison.OrdinalIgnoreCase) + 1),
- FileName = uninstallString.Substring(0, uninstallString.IndexOf(" ", StringComparison.OrdinalIgnoreCase)),
- UseShellExecute = false
- }
-
- }.Start();
- }
-
- /// <summary>
- /// Configures the click once startup.
- /// </summary>
- /// <param name="publisherName">Name of the publisher.</param>
- /// <param name="productName">Name of the product.</param>
- /// <param name="suiteName">Name of the suite.</param>
- /// <param name="runAtStartup">if set to <c>true</c> [run at startup].</param>
- /// <param name="uninstallerFilename">The uninstaller filename.</param>
- public static void ConfigureClickOnceStartupIfInstalled(string publisherName, string productName, string suiteName, bool runAtStartup, string uninstallerFilename)
- {
- if (!ApplicationDeployment.IsNetworkDeployed)
- {
- return;
- }
-
- var clickOnceHelper = new ClickOnceHelper(publisherName, productName, suiteName);
-
- if (runAtStartup)
- {
- clickOnceHelper.UpdateUninstallParameters(uninstallerFilename);
- clickOnceHelper.AddShortcutToStartup();
- }
- else
- {
- clickOnceHelper.RemoveShortcutFromStartup();
- }
- }
- }
-}
diff --git a/MediaBrowser.ClickOnce/MediaBrowser.ClickOnce.csproj b/MediaBrowser.ClickOnce/MediaBrowser.ClickOnce.csproj
deleted file mode 100644
index eb566fd7f..000000000
--- a/MediaBrowser.ClickOnce/MediaBrowser.ClickOnce.csproj
+++ /dev/null
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>MediaBrowser.ClickOnce</RootNamespace>
- <AssemblyName>MediaBrowser.ClickOnce</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Deployment" />
- <Reference Include="Microsoft.CSharp" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\SharedVersion.cs">
- <Link>Properties\SharedVersion.cs</Link>
- </Compile>
- <Compile Include="ApplicationUpdateCheck.cs" />
- <Compile Include="ApplicationUpdater.cs" />
- <Compile Include="ClickOnceHelper.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
- <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
- <Name>MediaBrowser.Model</Name>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <PropertyGroup>
- <PostBuildEvent>if $(ConfigurationName) == Release (
-xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i
-)</PostBuildEvent>
- </PropertyGroup>
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
-</Project> \ No newline at end of file
diff --git a/MediaBrowser.ClickOnce/Properties/AssemblyInfo.cs b/MediaBrowser.ClickOnce/Properties/AssemblyInfo.cs
deleted file mode 100644
index c3947b648..000000000
--- a/MediaBrowser.ClickOnce/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// 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("MediaBrowser.ClickOnce")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("MediaBrowser.ClickOnce")]
-[assembly: AssemblyCopyright("Copyright © 2013")]
-[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)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("16e62c11-5009-4212-8c96-fd692479fc5d")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-// \ No newline at end of file
diff --git a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj
index 00b68e254..4ca2c6f96 100644
--- a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj
+++ b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj
@@ -248,10 +248,6 @@
<Project>{4fd51ac5-2c16-4308-a993-c3a84f3b4582}</Project>
<Name>MediaBrowser.Api</Name>
</ProjectReference>
- <ProjectReference Include="..\MediaBrowser.ClickOnce\MediaBrowser.ClickOnce.csproj">
- <Project>{cc96bf3e-0bda-4809-bc4b-bb6d418f4a84}</Project>
- <Name>MediaBrowser.ClickOnce</Name>
- </ProjectReference>
<ProjectReference Include="..\MediaBrowser.Common.Implementations\MediaBrowser.Common.Implementations.csproj">
<Project>{c4d2573a-3fd3-441f-81af-174ac4cd4e1d}</Project>
<Name>MediaBrowser.Common.Implementations</Name>
diff --git a/MediaBrowser.sln b/MediaBrowser.sln
index b473b2062..16caa617d 100644
--- a/MediaBrowser.sln
+++ b/MediaBrowser.sln
@@ -31,8 +31,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.IsoMounter", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.Installer", "MediaBrowser.Installer\MediaBrowser.Installer.csproj", "{3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.ClickOnce", "MediaBrowser.ClickOnce\MediaBrowser.ClickOnce.csproj", "{CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}"
-EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.Common.Implementations", "MediaBrowser.Common.Implementations\MediaBrowser.Common.Implementations.csproj", "{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.Server.Implementations", "MediaBrowser.Server.Implementations\MediaBrowser.Server.Implementations.csproj", "{2E781478-814D-4A48-9D80-BFF206441A65}"
@@ -179,20 +177,6 @@ Global
{3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|Win32.ActiveCfg = Release|Any CPU
{3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|x64.ActiveCfg = Release|Any CPU
{3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|x86.ActiveCfg = Release|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Debug|x64.ActiveCfg = Debug|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Debug|x86.ActiveCfg = Debug|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Release|Any CPU.Build.0 = Release|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Release|Win32.ActiveCfg = Release|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Release|x64.ActiveCfg = Release|Any CPU
- {CC96BF3E-0BDA-4809-BC4B-BB6D418F4A84}.Release|x86.ActiveCfg = Release|Any CPU
{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
diff --git a/Nuget/MediaBrowser.Common.Internal.nuspec b/Nuget/MediaBrowser.Common.Internal.nuspec
index e3f8d15a1..e8a6fbedd 100644
--- a/Nuget/MediaBrowser.Common.Internal.nuspec
+++ b/Nuget/MediaBrowser.Common.Internal.nuspec
@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>MediaBrowser.Common.Internal</id>
- <version>3.0.28</version>
+ <version>3.0.29</version>
<title>MediaBrowser.Common.Internal</title>
<authors>Luke</authors>
<owners>ebr,Luke,scottisafool</owners>
@@ -12,7 +12,7 @@
<description>Contains common components shared by Media Browser Theatre and Media Browser Server. Not intended for plugin developer consumption.</description>
<copyright>Copyright © Media Browser 2013</copyright>
<dependencies>
- <dependency id="MediaBrowser.Common" version="3.0.28" />
+ <dependency id="MediaBrowser.Common" version="3.0.29" />
<dependency id="NLog" version="2.0.0.2000" />
<dependency id="ServiceStack" version="3.9.37" />
<dependency id="ServiceStack.Api.Swagger" version="3.9.35" />
@@ -21,7 +21,6 @@
</dependencies>
</metadata>
<files>
- <file src="dlls\MediaBrowser.ClickOnce.dll" target="lib\net45\MediaBrowser.ClickOnce.dll" />
<file src="dlls\MediaBrowser.Common.Implementations.dll" target="lib\net45\MediaBrowser.Common.Implementations.dll" />
<file src="dlls\MediaBrowser.IsoMounter.dll" target="lib\net45\MediaBrowser.IsoMounter.dll" />
<file src="dlls\pfmclrapi.dll" target="lib\net45\pfmclrapi.dll" />
diff --git a/Nuget/MediaBrowser.Common.nuspec b/Nuget/MediaBrowser.Common.nuspec
index 725057b94..745c7076e 100644
--- a/Nuget/MediaBrowser.Common.nuspec
+++ b/Nuget/MediaBrowser.Common.nuspec
@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>MediaBrowser.Common</id>
- <version>3.0.28</version>
+ <version>3.0.29</version>
<title>MediaBrowser.Common</title>
<authors>Media Browser Team</authors>
<owners>ebr,Luke,scottisafool</owners>
diff --git a/Nuget/MediaBrowser.Server.Core.nuspec b/Nuget/MediaBrowser.Server.Core.nuspec
index ce4445203..8f82654c7 100644
--- a/Nuget/MediaBrowser.Server.Core.nuspec
+++ b/Nuget/MediaBrowser.Server.Core.nuspec
@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>MediaBrowser.Server.Core</id>
- <version>3.0.28</version>
+ <version>3.0.29</version>
<title>Media Browser.Server.Core</title>
<authors>Media Browser Team</authors>
<owners>ebr,Luke,scottisafool</owners>
@@ -12,7 +12,7 @@
<description>Contains core components required to build plugins for Media Browser Server.</description>
<copyright>Copyright © Media Browser 2013</copyright>
<dependencies>
- <dependency id="MediaBrowser.Common" version="3.0.28" />
+ <dependency id="MediaBrowser.Common" version="3.0.29" />
</dependencies>
</metadata>
<files>