From b5842f9f193959d0d780c9585851c7ea827cc08c Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 5 Nov 2014 14:28:41 -0500 Subject: [PATCH] rework build scripts --- MediaBrowser.Api/MediaBrowser.Api.csproj | 4 ++-- MediaBrowser.Api/System/SystemService.cs | 4 ++-- .../MediaBrowser.Common.Implementations.csproj | 7 +++++-- MediaBrowser.Common/MediaBrowser.Common.csproj | 9 ++++++--- .../Library/IUserManager.cs | 4 ++-- .../MediaBrowser.Controller.csproj | 7 +++++-- MediaBrowser.Dlna/MediaBrowser.Dlna.csproj | 2 +- .../MediaBrowser.LocalMetadata.csproj | 2 +- .../MediaBrowser.MediaEncoding.csproj | 2 +- .../MediaBrowser.MediaInfo.csproj | 2 +- .../MediaBrowser.Model.Portable.csproj | 7 +++---- .../MediaBrowser.Model.net35.csproj | 7 +++---- MediaBrowser.Model/MediaBrowser.Model.csproj | 3 +++ .../MediaBrowser.Providers.csproj | 4 ++-- .../Devices/DeviceRepository.cs | 5 +++-- .../Library/UserManager.cs | 18 ++++++++++++++---- .../MediaBrowser.Server.Implementations.csproj | 4 ++-- .../ApplicationHost.cs | 2 +- .../MediaBrowser.ServerApplication.csproj | 4 ++-- MediaBrowser.Tests/MediaBrowser.Tests.csproj | 2 +- .../MediaBrowser.WebDashboard.csproj | 4 ++-- .../MediaBrowser.XbmcMetadata.csproj | 2 +- .../OpenSubtitlesHandler.csproj | 2 +- SharedVersion.cs | 4 ++-- 24 files changed, 66 insertions(+), 45 deletions(-) diff --git a/MediaBrowser.Api/MediaBrowser.Api.csproj b/MediaBrowser.Api/MediaBrowser.Api.csproj index b233629e1f..26d826c694 100644 --- a/MediaBrowser.Api/MediaBrowser.Api.csproj +++ b/MediaBrowser.Api/MediaBrowser.Api.csproj @@ -28,7 +28,7 @@ v4.5 - pdbonly + none true bin\Release\ TRACE @@ -37,7 +37,7 @@ v4.5 - pdbonly + none true bin\Release\ TRACE diff --git a/MediaBrowser.Api/System/SystemService.cs b/MediaBrowser.Api/System/SystemService.cs index 9d22d8dfaa..aa01e1b65e 100644 --- a/MediaBrowser.Api/System/SystemService.cs +++ b/MediaBrowser.Api/System/SystemService.cs @@ -122,7 +122,7 @@ namespace MediaBrowser.Api.System { files = new DirectoryInfo(_appPaths.LogDirectoryPath) .EnumerateFiles("*", SearchOption.AllDirectories) - .Where(i => string.Equals(i.Extension, ".txt", global::System.StringComparison.OrdinalIgnoreCase)) + .Where(i => string.Equals(i.Extension, ".txt", StringComparison.OrdinalIgnoreCase)) .ToList(); } catch (DirectoryNotFoundException) @@ -149,7 +149,7 @@ namespace MediaBrowser.Api.System { var file = new DirectoryInfo(_appPaths.LogDirectoryPath) .EnumerateFiles("*", SearchOption.AllDirectories) - .First(i => string.Equals(i.Name, request.Name, global::System.StringComparison.OrdinalIgnoreCase)); + .First(i => string.Equals(i.Name, request.Name, StringComparison.OrdinalIgnoreCase)); return ResultFactory.GetStaticFileResult(Request, file.FullName, FileShare.ReadWrite); } diff --git a/MediaBrowser.Common.Implementations/MediaBrowser.Common.Implementations.csproj b/MediaBrowser.Common.Implementations/MediaBrowser.Common.Implementations.csproj index 5806a33d8e..ce99be47c8 100644 --- a/MediaBrowser.Common.Implementations/MediaBrowser.Common.Implementations.csproj +++ b/MediaBrowser.Common.Implementations/MediaBrowser.Common.Implementations.csproj @@ -27,7 +27,7 @@ v4.5 - pdbonly + none true bin\Release\ TRACE @@ -36,7 +36,7 @@ v4.5 - pdbonly + none true bin\Release Mono\ TRACE @@ -125,6 +125,9 @@ xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i ) + + + - + \ No newline at end of file diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index e9785e2ce8..6e084e9d81 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -120,9 +120,9 @@ namespace MediaBrowser.Controller.Library /// Changes the password. /// /// The user. - /// The new password. + /// The new password sha1. /// Task. - Task ChangePassword(User user, string newPassword); + Task ChangePassword(User user, string newPasswordSha1); /// /// Gets the user dto. diff --git a/MediaBrowser.Controller/MediaBrowser.Controller.csproj b/MediaBrowser.Controller/MediaBrowser.Controller.csproj index 232f36ebf2..d64d71ff00 100644 --- a/MediaBrowser.Controller/MediaBrowser.Controller.csproj +++ b/MediaBrowser.Controller/MediaBrowser.Controller.csproj @@ -27,7 +27,7 @@ v4.5 - pdbonly + none true bin\Release\ TRACE @@ -39,7 +39,7 @@ Always - pdbonly + none true bin\Release Mono\ TRACE @@ -369,6 +369,9 @@ xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i + + +