jellyfin/MediaBrowser.Controller/MediaBrowser.Controller.csproj

270 lines
13 KiB
XML
Raw Normal View History

2013-02-21 02:33:05 +01:00
<?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>{17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MediaBrowser.Controller</RootNamespace>
<AssemblyName>MediaBrowser.Controller</AssemblyName>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
2013-09-24 23:06:21 +02:00
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
2013-12-11 20:54:33 +01:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2013-02-21 02:33:05 +01:00
</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>
2013-12-11 20:54:33 +01:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2013-02-21 02:33:05 +01:00
</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>
2013-12-11 20:54:33 +01:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2013-02-21 02:33:05 +01:00
</PropertyGroup>
<PropertyGroup>
<RunPostBuildEvent>Always</RunPostBuildEvent>
</PropertyGroup>
2013-12-11 20:54:33 +01:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
2013-02-21 02:33:05 +01:00
<DebugType>pdbonly</DebugType>
2013-12-11 20:54:33 +01:00
<Optimize>true</Optimize>
<OutputPath>bin\Release Mono\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
2013-02-21 02:33:05 +01:00
<ErrorReport>prompt</ErrorReport>
2013-09-24 23:06:21 +02:00
<WarningLevel>4</WarningLevel>
2013-12-11 20:54:33 +01:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2013-02-21 02:33:05 +01:00
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
2013-04-22 06:38:03 +02:00
<Reference Include="System.Data" />
2013-02-21 02:33:05 +01:00
<Reference Include="System.Drawing" />
<Reference Include="System.Net" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
2013-09-24 23:06:21 +02:00
<Reference Include="MoreLinq">
<HintPath>..\packages\morelinq.1.0.16006\lib\net35\MoreLinq.dll</HintPath>
</Reference>
2013-12-08 18:57:49 +01:00
<Reference Include="ServiceStack.Interfaces">
<HintPath>..\ThirdParty\ServiceStack\ServiceStack.Interfaces.dll</HintPath>
</Reference>
2013-02-21 02:33:05 +01:00
</ItemGroup>
<ItemGroup>
2013-02-22 08:17:50 +01:00
<Compile Include="..\SharedVersion.cs">
<Link>Properties\SharedVersion.cs</Link>
</Compile>
2013-09-18 20:49:06 +02:00
<Compile Include="Drawing\IImageProcessor.cs" />
<Compile Include="Drawing\ImageFormat.cs" />
2013-09-19 17:12:28 +02:00
<Compile Include="Drawing\ImageProcessingOptions.cs" />
2013-09-04 19:02:19 +02:00
<Compile Include="Dto\IDtoService.cs" />
2013-07-16 20:47:05 +02:00
<Compile Include="Entities\AdultVideo.cs" />
<Compile Include="Entities\Audio\IHasAlbumArtist.cs" />
<Compile Include="Entities\Audio\IHasMusicGenres.cs" />
2013-08-31 01:54:49 +02:00
<Compile Include="Entities\Book.cs" />
<Compile Include="Configuration\IServerConfigurationManager.cs" />
2013-06-11 05:31:00 +02:00
<Compile Include="Entities\Audio\MusicGenre.cs" />
2013-09-11 19:54:59 +02:00
<Compile Include="Entities\Extensions.cs" />
2013-06-22 20:15:31 +02:00
<Compile Include="Entities\Game.cs" />
2013-07-01 19:17:33 +02:00
<Compile Include="Entities\GameGenre.cs" />
2013-09-21 23:00:04 +02:00
<Compile Include="Entities\GameSystem.cs" />
<Compile Include="Entities\IByReferenceItem.cs" />
<Compile Include="Entities\IHasAspectRatio.cs" />
2013-12-02 17:16:03 +01:00
<Compile Include="Entities\IHasBudget.cs" />
2013-11-06 17:06:16 +01:00
<Compile Include="Entities\IHasCriticRating.cs" />
<Compile Include="Entities\IHasDisplayOrder.cs" />
2013-12-19 22:51:32 +01:00
<Compile Include="Entities\IHasImages.cs" />
2014-01-14 16:50:39 +01:00
<Compile Include="Entities\IHasKeywords.cs" />
2013-12-06 04:39:44 +01:00
<Compile Include="Entities\IHasMediaStreams.cs" />
2014-01-15 06:01:58 +01:00
<Compile Include="Entities\IHasMetascore.cs" />
<Compile Include="Entities\IHasPreferredMetadataLanguage.cs" />
<Compile Include="Entities\IHasProductionLocations.cs" />
<Compile Include="Entities\IHasScreenshots.cs" />
2014-02-08 21:02:35 +01:00
<Compile Include="Entities\IHasSeries.cs" />
2013-11-12 16:36:08 +01:00
<Compile Include="Entities\IHasSoundtracks.cs" />
<Compile Include="Entities\IHasTaglines.cs" />
<Compile Include="Entities\IHasTags.cs" />
<Compile Include="Entities\IHasThemeMedia.cs" />
2013-12-02 17:46:25 +01:00
<Compile Include="Entities\IHasTrailers.cs" />
2013-12-19 22:51:32 +01:00
<Compile Include="Entities\IHasUserData.cs" />
2013-06-27 21:29:58 +02:00
<Compile Include="Entities\IItemByName.cs" />
2014-01-14 21:24:56 +01:00
<Compile Include="Entities\ILibraryItem.cs" />
<Compile Include="Entities\ImageSourceInfo.cs" />
<Compile Include="Entities\IMetadataContainer.cs" />
2014-02-07 21:30:41 +01:00
<Compile Include="Entities\ItemImageInfo.cs" />
2013-07-05 15:47:10 +02:00
<Compile Include="Entities\LinkedChild.cs" />
<Compile Include="Entities\MusicVideo.cs" />
2014-01-15 06:01:58 +01:00
<Compile Include="Entities\IHasAwards.cs" />
2014-02-13 06:11:54 +01:00
<Compile Include="Entities\Photo.cs" />
<Compile Include="FileOrganization\IFileOrganizationService.cs" />
<Compile Include="Library\ILibraryPostScanTask.cs" />
2013-06-09 18:23:06 +02:00
<Compile Include="Library\IMetadataSaver.cs" />
<Compile Include="Library\ItemUpdateType.cs" />
2013-10-02 18:08:58 +02:00
<Compile Include="Library\IUserDataManager.cs" />
2013-10-02 21:08:58 +02:00
<Compile Include="Library\UserDataSaveEventArgs.cs" />
2014-01-15 06:38:08 +01:00
<Compile Include="LiveTv\EventArgs.cs" />
<Compile Include="LiveTv\ILiveTvRecording.cs" />
<Compile Include="LiveTv\LiveStreamInfo.cs" />
<Compile Include="LiveTv\LiveTvAudioRecording.cs" />
2013-12-19 22:51:32 +01:00
<Compile Include="LiveTv\LiveTvChannel.cs" />
<Compile Include="LiveTv\ChannelInfo.cs" />
<Compile Include="LiveTv\ILiveTvManager.cs" />
<Compile Include="LiveTv\ILiveTvService.cs" />
2013-12-24 01:00:27 +01:00
<Compile Include="LiveTv\LiveTvException.cs" />
2014-01-16 18:23:30 +01:00
<Compile Include="LiveTv\LiveTvServiceStatusInfo.cs" />
2013-12-22 19:58:51 +01:00
<Compile Include="LiveTv\StreamResponseInfo.cs" />
2013-12-19 22:51:32 +01:00
<Compile Include="LiveTv\LiveTvProgram.cs" />
<Compile Include="LiveTv\LiveTvVideoRecording.cs" />
2013-11-25 21:39:23 +01:00
<Compile Include="LiveTv\ProgramInfo.cs" />
<Compile Include="LiveTv\RecordingInfo.cs" />
2013-12-01 07:25:19 +01:00
<Compile Include="LiveTv\SeriesTimerInfo.cs" />
2013-11-26 22:36:11 +01:00
<Compile Include="LiveTv\TimerInfo.cs" />
<Compile Include="Localization\ILocalizationManager.cs" />
2014-01-12 07:31:21 +01:00
<Compile Include="MediaInfo\IMediaEncoder.cs" />
<Compile Include="MediaInfo\InternalMediaInfoResult.cs" />
2013-12-07 16:52:38 +01:00
<Compile Include="Net\IHasResultFactory.cs" />
<Compile Include="Net\IHttpResultFactory.cs" />
<Compile Include="Net\IHttpServer.cs" />
<Compile Include="Net\IRestfulService.cs" />
2014-01-18 22:52:01 +01:00
<Compile Include="News\INewsService.cs" />
2013-07-06 23:23:32 +02:00
<Compile Include="Notifications\INotificationsRepository.cs" />
<Compile Include="Notifications\NotificationUpdateEventArgs.cs" />
<Compile Include="Persistence\IFileOrganizationRepository.cs" />
2013-12-06 04:39:44 +01:00
<Compile Include="Persistence\MediaStreamQuery.cs" />
2014-02-08 23:38:02 +01:00
<Compile Include="Providers\DirectoryService.cs" />
2014-02-02 14:36:31 +01:00
<Compile Include="Providers\ICustomMetadataProvider.cs" />
2014-02-03 18:44:13 +01:00
<Compile Include="Providers\IHasChangeMonitor.cs" />
2014-02-07 04:10:13 +01:00
<Compile Include="Entities\IHasMetadata.cs" />
2013-10-30 22:33:27 +01:00
<Compile Include="Providers\IImageProvider.cs" />
2014-01-31 20:55:21 +01:00
<Compile Include="Providers\ILocalMetadataProvider.cs" />
2014-01-29 06:17:58 +01:00
<Compile Include="Providers\IProviderRepository.cs" />
<Compile Include="Providers\IRemoteImageProvider.cs" />
<Compile Include="Providers\ILocalImageProvider.cs" />
<Compile Include="Providers\IMetadataProvider.cs" />
<Compile Include="Providers\IMetadataService.cs" />
2014-01-31 20:55:21 +01:00
<Compile Include="Providers\IRemoteMetadataProvider.cs" />
2014-02-07 04:10:13 +01:00
<Compile Include="Providers\ItemLookupInfo.cs" />
<Compile Include="Providers\MetadataRefreshOptions.cs" />
2013-12-02 03:24:14 +01:00
<Compile Include="Providers\NameParser.cs" />
2014-01-29 06:17:58 +01:00
<Compile Include="Providers\MetadataStatus.cs" />
<Compile Include="Session\ISessionManager.cs" />
<Compile Include="Drawing\ImageExtensions.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Entities\AggregateFolder.cs" />
<Compile Include="Entities\Audio\Audio.cs" />
<Compile Include="Entities\Audio\MusicAlbum.cs" />
<Compile Include="Entities\Audio\MusicArtist.cs" />
<Compile Include="Entities\BaseItem.cs" />
<Compile Include="Entities\BasePluginFolder.cs" />
<Compile Include="Entities\Folder.cs" />
<Compile Include="Entities\Genre.cs" />
<Compile Include="Entities\ICollectionFolder.cs" />
2013-02-23 02:24:04 +01:00
<Compile Include="Entities\IVirtualFolderCreator.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Entities\Movies\BoxSet.cs" />
<Compile Include="Entities\Movies\Movie.cs" />
<Compile Include="Entities\Person.cs" />
<Compile Include="Library\ISearchEngine.cs" />
<Compile Include="Library\ItemChangeEventArgs.cs" />
2013-03-20 17:54:32 +01:00
<Compile Include="Library\PlaybackProgressEventArgs.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Entities\Studio.cs" />
<Compile Include="Entities\Trailer.cs" />
<Compile Include="Entities\TV\Episode.cs" />
<Compile Include="Entities\TV\Season.cs" />
<Compile Include="Entities\TV\Series.cs" />
<Compile Include="Entities\User.cs" />
<Compile Include="Entities\UserItemData.cs" />
<Compile Include="Entities\UserRootFolder.cs" />
<Compile Include="Entities\Video.cs" />
<Compile Include="Entities\CollectionFolder.cs" />
<Compile Include="Entities\Year.cs" />
<Compile Include="Library\ILibraryMonitor.cs" />
2013-03-07 06:34:00 +01:00
<Compile Include="IServerApplicationHost.cs" />
2013-02-24 22:53:54 +01:00
<Compile Include="IServerApplicationPaths.cs" />
2013-04-27 15:05:33 +02:00
<Compile Include="Library\SearchHintInfo.cs" />
<Compile Include="Providers\IProviderManager.cs" />
2013-06-09 18:47:28 +02:00
<Compile Include="MediaInfo\MediaEncoderHelpers.cs" />
<Compile Include="Providers\MetadataProviderPriority.cs" />
<Compile Include="Resolvers\BaseItemResolver.cs" />
<Compile Include="Resolvers\BaseVideoResolver.cs" />
<Compile Include="Resolvers\IItemResolver.cs" />
<Compile Include="Library\ILibraryManager.cs" />
<Compile Include="Library\IUserManager.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Library\Profiler.cs" />
<Compile Include="Localization\BaseStrings.cs" />
2013-02-23 08:57:11 +01:00
<Compile Include="Localization\LocalizedStringData.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Localization\LocalizedStrings.cs" />
<Compile Include="MediaInfo\FFMpegManager.cs" />
<Compile Include="Persistence\IDisplayPreferencesRepository.cs" />
<Compile Include="Persistence\IItemRepository.cs" />
<Compile Include="Persistence\IRepository.cs" />
<Compile Include="Persistence\IUserDataRepository.cs" />
<Compile Include="Persistence\IUserRepository.cs" />
<Compile Include="Library\IIntroProvider.cs" />
2013-02-22 07:28:57 +01:00
<Compile Include="Plugins\IPluginConfigurationPage.cs" />
<Compile Include="Plugins\IServerEntryPoint.cs" />
2013-02-23 01:44:20 +01:00
<Compile Include="Providers\IImageEnhancer.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Providers\BaseProviderInfo.cs" />
<Compile Include="Resolvers\IResolverIgnoreRule.cs" />
<Compile Include="Resolvers\EntityResolutionHelper.cs" />
<Compile Include="Resolvers\ResolverPriority.cs" />
<Compile Include="Library\TVUtils.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Library\ItemResolveArgs.cs" />
<Compile Include="IO\FileData.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Providers\BaseMetadataProvider.cs" />
2013-10-02 21:08:58 +02:00
<Compile Include="Session\ISessionController.cs" />
<Compile Include="Session\ISessionControllerFactory.cs" />
<Compile Include="Session\PlaybackInfo.cs" />
<Compile Include="Session\PlaybackProgressInfo.cs" />
<Compile Include="Session\PlaybackStopInfo.cs" />
2013-05-10 00:43:11 +02:00
<Compile Include="Session\SessionInfo.cs" />
2013-03-10 05:22:36 +01:00
<Compile Include="Sorting\IBaseItemComparer.cs" />
<Compile Include="Sorting\IUserBaseItemComparer.cs" />
2013-02-21 02:33:05 +01:00
<Compile Include="Providers\BaseItemXmlParser.cs" />
2014-01-13 17:25:18 +01:00
<Compile Include="Sorting\SortExtensions.cs" />
2013-02-21 02:33:05 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
2013-09-24 23:06:21 +02:00
<Project>{9142EEFA-7570-41E1-BFCC-468BB571AF2F}</Project>
2013-02-21 02:33:05 +01:00
<Name>MediaBrowser.Common</Name>
</ProjectReference>
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
2013-09-24 23:06:21 +02:00
<Project>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</Project>
2013-02-21 02:33:05 +01:00
<Name>MediaBrowser.Model</Name>
</ProjectReference>
</ItemGroup>
2013-04-22 06:38:03 +02:00
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
2013-02-21 02:33:05 +01:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
2013-12-11 20:54:33 +01:00
<PostBuildEvent Condition=" '$(ConfigurationName)' != 'Release Mono' ">if '$(ConfigurationName)' == 'Release' (
xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i
)</PostBuildEvent>
2013-02-21 02:33:05 +01:00
</PropertyGroup>
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
2013-12-11 20:54:33 +01:00
<Import Project="$(SolutionDir)\.nuget\nuget.targets" Condition=" '$(ConfigurationName)' != 'Release Mono' " />
2013-02-21 02:33:05 +01:00
<!-- 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>
-->
2012-07-12 08:55:27 +02:00
</Project>