update scheduled tasks page

This commit is contained in:
Luke Pulverenti 2015-10-12 15:09:56 -04:00
parent 9ec1376e5f
commit cc023262c5
3 changed files with 8 additions and 4 deletions

View file

@ -84,7 +84,8 @@ namespace MediaBrowser.Controller.Entities
CollectionType.HomeVideos,
CollectionType.Photos,
CollectionType.Playlists,
CollectionType.BoxSets
CollectionType.BoxSets,
CollectionType.MusicVideos
};
var collectionFolder = folder as ICollectionFolder;

View file

@ -22,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>

View file

@ -1,5 +1,4 @@
using MediaBrowser.Common.IO;
using MediaBrowser.Common.Net;
using MediaBrowser.Common.Net;
using MediaBrowser.IsoMounter;
using MediaBrowser.Model.Logging;
using MediaBrowser.Server.Startup.Common;
@ -23,7 +22,10 @@ namespace MediaBrowser.ServerApplication.Native
{
var list = new List<Assembly>();
list.Add(typeof(PismoIsoManager).Assembly);
if (!System.Environment.Is64BitProcess)
{
list.Add(typeof(PismoIsoManager).Assembly);
}
list.Add(GetType().Assembly);