Merge branch 'dev' of https://github.com/MediaBrowser/Emby into dev
This commit is contained in:
commit
2f70fdf4bb
|
@ -1,89 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Choose>
|
|
||||||
<When Condition="$(NCrunchOriginalSolutionDir) != '' And $(NCrunchOriginalSolutionDir) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodySolutionDir>$(NCrunchOriginalSolutionDir)</FodySolutionDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<When Condition="$(SolutionDir) != '' And $(SolutionDir) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodySolutionDir>$(SolutionDir)</FodySolutionDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<When Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodySolutionDir>$(MSBuildProjectDirectory)\..\</FodySolutionDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
</Choose>
|
|
||||||
<Choose>
|
|
||||||
<When Condition="$(KeyOriginatorFile) != '' And $(KeyOriginatorFile) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodyKeyFilePath>$(KeyOriginatorFile)</FodyKeyFilePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<When Condition="$(AssemblyOriginatorKeyFile) != '' And $(AssemblyOriginatorKeyFile) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodyKeyFilePath>$(AssemblyOriginatorKeyFile)</FodyKeyFilePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<Otherwise >
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodyKeyFilePath></FodyKeyFilePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Otherwise>
|
|
||||||
</Choose>
|
|
||||||
<PropertyGroup>
|
|
||||||
<IntermediateDir>$(ProjectDir)$(IntermediateOutputPath)</IntermediateDir>
|
|
||||||
<FodyMessageImportance Condition="$(FodyMessageImportance) == '' Or $(FodyMessageImportance) == '*Undefined*'">Low</FodyMessageImportance>
|
|
||||||
<FodySignAssembly Condition="$(FodySignAssembly) == '' Or $(FodySignAssembly) == '*Undefined*'">$(SignAssembly)</FodySignAssembly>
|
|
||||||
<FodyPath Condition="$(FodyPath) == '' Or $(FodyPath) == '*Undefined*'">$(MSBuildThisFileDirectory)</FodyPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<UsingTask
|
|
||||||
TaskName="Fody.WeavingTask"
|
|
||||||
AssemblyFile="$(FodyPath)\Fody.dll" />
|
|
||||||
<Target
|
|
||||||
AfterTargets="AfterCompile"
|
|
||||||
Name="WinFodyTarget"
|
|
||||||
Condition=" '$(OS)' == 'Windows_NT'">
|
|
||||||
|
|
||||||
<Fody.WeavingTask
|
|
||||||
AssemblyPath="@(IntermediateAssembly)"
|
|
||||||
IntermediateDir="$(IntermediateDir)"
|
|
||||||
KeyFilePath="$(FodyKeyFilePath)"
|
|
||||||
MessageImportance="$(FodyMessageImportance)"
|
|
||||||
ProjectDirectory="$(ProjectDir)"
|
|
||||||
SolutionDir="$(FodySolutionDir)"
|
|
||||||
References="@(ReferencePath)"
|
|
||||||
SignAssembly="$(FodySignAssembly)"
|
|
||||||
ReferenceCopyLocalPaths="@(ReferenceCopyLocalPaths)"
|
|
||||||
DefineConstants="$(DefineConstants)"
|
|
||||||
/>
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<Target
|
|
||||||
AfterTargets="AfterBuild"
|
|
||||||
Name="NonWinFodyTarget"
|
|
||||||
Condition=" '$(OS)' != 'Windows_NT'">
|
|
||||||
<Fody.WeavingTask
|
|
||||||
AssemblyPath="$(TargetPath)"
|
|
||||||
IntermediateDir="$(IntermediateDir)"
|
|
||||||
KeyFilePath="$(FodyKeyFilePath)"
|
|
||||||
MessageImportance="$(FodyMessageImportance)"
|
|
||||||
ProjectDirectory="$(ProjectDir)"
|
|
||||||
SolutionDir="$(FodySolutionDir)"
|
|
||||||
References="@(ReferencePath)"
|
|
||||||
SignAssembly="$(FodySignAssembly)"
|
|
||||||
ReferenceCopyLocalPaths="$(ReferenceCopyLocalPaths)"
|
|
||||||
DefineConstants="$(DefineConstants)"
|
|
||||||
/>
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
|
|
||||||
<!--Support for ncrunch-->
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="$(FodyPath)\*.*" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
|
@ -15,7 +15,6 @@
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
||||||
<FodyPath>..\packages\Fody.1.19.1.0</FodyPath>
|
|
||||||
<FileUpgradeFlags>
|
<FileUpgradeFlags>
|
||||||
</FileUpgradeFlags>
|
</FileUpgradeFlags>
|
||||||
<UpgradeBackupLocation>
|
<UpgradeBackupLocation>
|
||||||
|
@ -58,14 +57,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<!-- A reference to the entire .NET Framework is automatically included -->
|
<!-- A reference to the entire .NET Framework is automatically included -->
|
||||||
<None Include="app.config" />
|
<None Include="app.config" />
|
||||||
<None Include="Fody.targets" />
|
|
||||||
<None Include="packages.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="PropertyChanged">
|
|
||||||
<HintPath>..\packages\PropertyChanged.Fody.1.41.0.0\Lib\portable-net4+sl4+wp7+win8+MonoAndroid16+MonoTouch40\PropertyChanged.dll</HintPath>
|
|
||||||
<Private>False</Private>
|
|
||||||
</Reference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\MediaBrowser.Model\Activity\ActivityLogEntry.cs">
|
<Compile Include="..\MediaBrowser.Model\Activity\ActivityLogEntry.cs">
|
||||||
|
@ -1254,7 +1245,13 @@
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="Fody.targets" />
|
<Import Project="..\packages\Fody.1.29.2\build\portable-net+sl+win+wpa+wp\Fody.targets" Condition="Exists('..\packages\Fody.1.29.2\build\portable-net+sl+win+wpa+wp\Fody.targets')" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>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}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\packages\Fody.1.29.2\build\portable-net+sl+win+wpa+wp\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.29.2\build\portable-net+sl+win+wpa+wp\Fody.targets'))" />
|
||||||
|
</Target>
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- 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.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
<Target Name="BeforeBuild">
|
<Target Name="BeforeBuild">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Fody" version="1.19.1.0" targetFramework="portable-win+net45+sl40+wp71" developmentDependency="true" />
|
<package id="Fody" version="1.29.2" targetFramework="portable45-net45+win8+wp8+wpa81" developmentDependency="true" />
|
||||||
<package id="PropertyChanged.Fody" version="1.41.0.0" targetFramework="portable-net45+sl40+wp71+win" requireReinstallation="True" />
|
<package id="PropertyChanged.Fody" version="1.50.4" targetFramework="portable45-net45+win8+wp8+wpa81" developmentDependency="true" />
|
||||||
</packages>
|
</packages>
|
|
@ -1,89 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Choose>
|
|
||||||
<When Condition="$(NCrunchOriginalSolutionDir) != '' And $(NCrunchOriginalSolutionDir) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodySolutionDir>$(NCrunchOriginalSolutionDir)</FodySolutionDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<When Condition="$(SolutionDir) != '' And $(SolutionDir) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodySolutionDir>$(SolutionDir)</FodySolutionDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<When Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodySolutionDir>$(MSBuildProjectDirectory)\..\</FodySolutionDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
</Choose>
|
|
||||||
<Choose>
|
|
||||||
<When Condition="$(KeyOriginatorFile) != '' And $(KeyOriginatorFile) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodyKeyFilePath>$(KeyOriginatorFile)</FodyKeyFilePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<When Condition="$(AssemblyOriginatorKeyFile) != '' And $(AssemblyOriginatorKeyFile) != '*Undefined*'">
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodyKeyFilePath>$(AssemblyOriginatorKeyFile)</FodyKeyFilePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
</When>
|
|
||||||
<Otherwise >
|
|
||||||
<PropertyGroup>
|
|
||||||
<FodyKeyFilePath></FodyKeyFilePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Otherwise>
|
|
||||||
</Choose>
|
|
||||||
<PropertyGroup>
|
|
||||||
<IntermediateDir>$(ProjectDir)$(IntermediateOutputPath)</IntermediateDir>
|
|
||||||
<FodyMessageImportance Condition="$(FodyMessageImportance) == '' Or $(FodyMessageImportance) == '*Undefined*'">Low</FodyMessageImportance>
|
|
||||||
<FodySignAssembly Condition="$(FodySignAssembly) == '' Or $(FodySignAssembly) == '*Undefined*'">$(SignAssembly)</FodySignAssembly>
|
|
||||||
<FodyPath Condition="$(FodyPath) == '' Or $(FodyPath) == '*Undefined*'">$(MSBuildThisFileDirectory)</FodyPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<UsingTask
|
|
||||||
TaskName="Fody.WeavingTask"
|
|
||||||
AssemblyFile="$(FodyPath)\Fody.dll" />
|
|
||||||
<Target
|
|
||||||
AfterTargets="AfterCompile"
|
|
||||||
Name="WinFodyTarget"
|
|
||||||
Condition=" '$(OS)' == 'Windows_NT'">
|
|
||||||
|
|
||||||
<Fody.WeavingTask
|
|
||||||
AssemblyPath="@(IntermediateAssembly)"
|
|
||||||
IntermediateDir="$(IntermediateDir)"
|
|
||||||
KeyFilePath="$(FodyKeyFilePath)"
|
|
||||||
MessageImportance="$(FodyMessageImportance)"
|
|
||||||
ProjectDirectory="$(ProjectDir)"
|
|
||||||
SolutionDir="$(FodySolutionDir)"
|
|
||||||
References="@(ReferencePath)"
|
|
||||||
SignAssembly="$(FodySignAssembly)"
|
|
||||||
ReferenceCopyLocalPaths="@(ReferenceCopyLocalPaths)"
|
|
||||||
DefineConstants="$(DefineConstants)"
|
|
||||||
/>
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<Target
|
|
||||||
AfterTargets="AfterBuild"
|
|
||||||
Name="NonWinFodyTarget"
|
|
||||||
Condition=" '$(OS)' != 'Windows_NT'">
|
|
||||||
<Fody.WeavingTask
|
|
||||||
AssemblyPath="$(TargetPath)"
|
|
||||||
IntermediateDir="$(IntermediateDir)"
|
|
||||||
KeyFilePath="$(FodyKeyFilePath)"
|
|
||||||
MessageImportance="$(FodyMessageImportance)"
|
|
||||||
ProjectDirectory="$(ProjectDir)"
|
|
||||||
SolutionDir="$(FodySolutionDir)"
|
|
||||||
References="@(ReferencePath)"
|
|
||||||
SignAssembly="$(FodySignAssembly)"
|
|
||||||
ReferenceCopyLocalPaths="$(ReferenceCopyLocalPaths)"
|
|
||||||
DefineConstants="$(DefineConstants)"
|
|
||||||
/>
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
|
|
||||||
<!--Support for ncrunch-->
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="$(FodyPath)\*.*" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Weavers>
|
<Weavers>
|
||||||
<PropertyChanged />
|
<PropertyChanged />
|
||||||
</Weavers>
|
</Weavers>
|
|
@ -11,7 +11,6 @@
|
||||||
<AssemblyName>MediaBrowser.Model</AssemblyName>
|
<AssemblyName>MediaBrowser.Model</AssemblyName>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
||||||
<FodyPath>..\packages\Fody.1.19.1.0</FodyPath>
|
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
<ReleaseVersion>
|
<ReleaseVersion>
|
||||||
</ReleaseVersion>
|
</ReleaseVersion>
|
||||||
|
@ -442,30 +441,30 @@
|
||||||
<Compile Include="Users\UserAction.cs" />
|
<Compile Include="Users\UserAction.cs" />
|
||||||
<Compile Include="Users\UserActionType.cs" />
|
<Compile Include="Users\UserActionType.cs" />
|
||||||
<Compile Include="Users\UserPolicy.cs" />
|
<Compile Include="Users\UserPolicy.cs" />
|
||||||
<None Include="Fody.targets" />
|
|
||||||
<None Include="FodyWeavers.xml" />
|
<None Include="FodyWeavers.xml" />
|
||||||
<None Include="MediaBrowser.Model.snk" />
|
<None Include="MediaBrowser.Model.snk" />
|
||||||
<None Include="packages.config" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Runtime.Serialization" />
|
<Reference Include="System.Runtime.Serialization" />
|
||||||
<Reference Include="PropertyChanged">
|
|
||||||
<HintPath>..\packages\PropertyChanged.Fody.1.41.0.0\Lib\NET35\PropertyChanged.dll</HintPath>
|
|
||||||
<Private>False</Private>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PostBuildEvent />
|
<PostBuildEvent />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="Fody.targets" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PostBuildEvent />
|
<PostBuildEvent />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<Import Project="..\packages\Fody.1.29.2\build\dotnet\Fody.targets" Condition="Exists('..\packages\Fody.1.29.2\build\dotnet\Fody.targets')" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>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}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\packages\Fody.1.29.2\build\dotnet\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.29.2\build\dotnet\Fody.targets'))" />
|
||||||
|
</Target>
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- 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.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
<Target Name="BeforeBuild">
|
<Target Name="BeforeBuild">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Fody" version="1.19.1.0" targetFramework="net45" developmentDependency="true" />
|
<package id="Fody" version="1.29.2" targetFramework="net45" developmentDependency="true" />
|
||||||
<package id="PropertyChanged.Fody" version="1.41.0.0" targetFramework="net45" />
|
<package id="PropertyChanged.Fody" version="1.50.4" targetFramework="net45" developmentDependency="true" />
|
||||||
</packages>
|
</packages>
|
Loading…
Reference in New Issue
Block a user