update project files
This commit is contained in:
parent
820b4873fb
commit
42d0b070b4
|
@ -33,10 +33,6 @@
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="project.json" />
|
|
||||||
<!-- A reference to the entire .NET Framework is automatically included -->
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="BDInfoSettings.cs" />
|
<Compile Include="BDInfoSettings.cs" />
|
||||||
<Compile Include="BDROM.cs" />
|
<Compile Include="BDROM.cs" />
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -33,10 +33,6 @@
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="project.json" />
|
|
||||||
<!-- A reference to the entire .NET Framework is automatically included -->
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="BigEndianBinaryReader.cs" />
|
<Compile Include="BigEndianBinaryReader.cs" />
|
||||||
<Compile Include="Ifo\AudioAttributes.cs" />
|
<Compile Include="Ifo\AudioAttributes.cs" />
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -357,6 +357,19 @@ namespace MediaBrowser.Api.Playback
|
||||||
mediaSource.SupportsTranscoding = false;
|
mediaSource.SupportsTranscoding = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (item is Audio)
|
||||||
|
{
|
||||||
|
Logger.Info("User policy for {0}. EnableAudioPlaybackTranscoding: {1}", user.Name, user.Policy.EnableAudioPlaybackTranscoding);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Logger.Info("User policy for {0}. EnablePlaybackRemuxing: {1} EnableVideoPlaybackTranscoding: {2} EnableAudioPlaybackTranscoding: {3}",
|
||||||
|
user.Name,
|
||||||
|
user.Policy.EnablePlaybackRemuxing,
|
||||||
|
user.Policy.EnableVideoPlaybackTranscoding,
|
||||||
|
user.Policy.EnableAudioPlaybackTranscoding);
|
||||||
|
}
|
||||||
|
|
||||||
if (mediaSource.SupportsDirectPlay)
|
if (mediaSource.SupportsDirectPlay)
|
||||||
{
|
{
|
||||||
if (mediaSource.IsRemote && forceDirectPlayRemoteMediaSource)
|
if (mediaSource.IsRemote && forceDirectPlayRemoteMediaSource)
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -72,9 +72,6 @@
|
||||||
<Name>MediaBrowser.Model</Name>
|
<Name>MediaBrowser.Model</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="project.json" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup />
|
<ItemGroup />
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -36,10 +36,6 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<RunPostBuildEvent>Always</RunPostBuildEvent>
|
<RunPostBuildEvent>Always</RunPostBuildEvent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="project.json" />
|
|
||||||
<!-- A reference to the entire .NET Framework is automatically included -->
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\SharedVersion.cs">
|
<Compile Include="..\SharedVersion.cs">
|
||||||
<Link>Properties\SharedVersion.cs</Link>
|
<Link>Properties\SharedVersion.cs</Link>
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -40,7 +40,7 @@ namespace MediaBrowser.LocalMetadata.Images
|
||||||
{
|
{
|
||||||
var parentPath = _fileSystem.GetDirectoryName(item.Path);
|
var parentPath = _fileSystem.GetDirectoryName(item.Path);
|
||||||
|
|
||||||
var parentPathFiles = directoryService.GetFileSystemEntries(parentPath)
|
var parentPathFiles = directoryService.GetFiles(parentPath)
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
var nameWithoutExtension = _fileSystem.GetFileNameWithoutExtension(item.Path);
|
var nameWithoutExtension = _fileSystem.GetFileNameWithoutExtension(item.Path);
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -33,10 +33,6 @@
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="project.json" />
|
|
||||||
<!-- A reference to the entire .NET Framework is automatically included -->
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\SharedVersion.cs">
|
<Compile Include="..\SharedVersion.cs">
|
||||||
<Link>Properties\SharedVersion.cs</Link>
|
<Link>Properties\SharedVersion.cs</Link>
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -107,9 +107,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="XML-RPC\Docs\XML-RPC.txt" />
|
<Content Include="XML-RPC\Docs\XML-RPC.txt" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="project.json" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||||
<!-- 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.
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"frameworks":{
|
|
||||||
"netstandard1.6":{
|
|
||||||
"dependencies":{
|
|
||||||
"NETStandard.Library":"1.6.0",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
".NETPortable,Version=v4.5,Profile=Profile7":{
|
|
||||||
"buildOptions": {
|
|
||||||
"define": [ ]
|
|
||||||
},
|
|
||||||
"frameworkAssemblies":{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user