jellyfin/MediaBrowser.Providers/MediaBrowser.Providers.csproj

222 lines
11 KiB
XML
Raw Normal View History

2013-06-09 18:47:28 +02: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>{442B5058-DCAF-4263-BB6A-F21E31120A1B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MediaBrowser.Providers</RootNamespace>
<AssemblyName>MediaBrowser.Providers</AssemblyName>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
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-06-09 18:47:28 +02: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-06-09 18:47:28 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2014-11-05 20:28:41 +01:00
<DebugType>none</DebugType>
2013-06-09 18:47:28 +02:00
<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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
2014-11-05 20:28:41 +01:00
<DebugType>none</DebugType>
2013-12-11 20:54:33 +01:00
<Optimize>true</Optimize>
<OutputPath>bin\Release Mono\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2013-06-09 18:47:28 +02:00
</PropertyGroup>
<ItemGroup>
2014-02-23 18:29:02 +01:00
<Reference Include="BDInfo, Version=1.0.5167.21152, Culture=neutral, processorArchitecture=MSIL">
2014-02-21 23:14:30 +01:00
<SpecificVersion>False</SpecificVersion>
2014-02-23 18:29:02 +01:00
<HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\BDInfo.dll</HintPath>
2014-01-11 06:49:18 +01:00
</Reference>
2015-10-04 06:23:11 +02:00
<Reference Include="CommonIO, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
2016-03-23 04:03:35 +01:00
<HintPath>..\packages\CommonIO.1.0.0.9\lib\net45\CommonIO.dll</HintPath>
2015-10-04 06:23:11 +02:00
</Reference>
2014-02-23 18:29:02 +01:00
<Reference Include="DvdLib, Version=1.0.5167.21152, Culture=neutral, PublicKeyToken=7a2f3f5ec8d93575, processorArchitecture=MSIL">
2014-02-21 23:14:30 +01:00
<SpecificVersion>False</SpecificVersion>
2014-02-23 18:29:02 +01:00
<HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\DvdLib.dll</HintPath>
2014-01-11 06:49:18 +01:00
</Reference>
2015-12-27 20:22:55 +01:00
<Reference Include="MoreLinq">
2015-11-20 03:54:33 +01:00
<HintPath>..\packages\morelinq.1.4.0\lib\net35\MoreLinq.dll</HintPath>
2014-08-20 00:28:35 +02:00
</Reference>
2015-10-04 06:23:11 +02:00
<Reference Include="Patterns.Logging">
<HintPath>..\packages\Patterns.Logging.1.0.0.2\lib\portable-net45+sl4+wp71+win8+wpa81\Patterns.Logging.dll</HintPath>
</Reference>
<Reference Include="policy.2.0.taglib-sharp">
<HintPath>..\packages\taglib.2.1.0.0\lib\policy.2.0.taglib-sharp.dll</HintPath>
</Reference>
2013-06-09 18:47:28 +02:00
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="taglib-sharp">
<HintPath>..\packages\taglib.2.1.0.0\lib\taglib-sharp.dll</HintPath>
<Private>True</Private>
</Reference>
2013-06-09 18:47:28 +02:00
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs">
<Link>Properties\SharedVersion.cs</Link>
</Compile>
2014-02-03 06:35:43 +01:00
<Compile Include="Books\BookMetadataService.cs" />
2014-01-30 22:23:54 +01:00
<Compile Include="BoxSets\BoxSetMetadataService.cs" />
2014-01-30 22:47:13 +01:00
<Compile Include="BoxSets\MovieDbBoxSetImageProvider.cs" />
2014-01-30 22:23:54 +01:00
<Compile Include="BoxSets\MovieDbBoxSetProvider.cs" />
2014-03-18 02:45:41 +01:00
<Compile Include="Channels\ChannelMetadataService.cs" />
2014-06-09 21:16:14 +02:00
<Compile Include="Chapters\ChapterManager.cs" />
2016-04-16 04:18:40 +02:00
<Compile Include="Folders\CollectionFolderMetadataService.cs" />
<Compile Include="Folders\FolderMetadataService.cs" />
2014-10-29 23:01:02 +01:00
<Compile Include="Folders\UserViewMetadataService.cs" />
<Compile Include="GameGenres\GameGenreMetadataService.cs" />
2014-02-02 14:36:31 +01:00
<Compile Include="Games\GameMetadataService.cs" />
<Compile Include="Games\GameSystemMetadataService.cs" />
<Compile Include="Genres\GenreMetadataService.cs" />
2014-02-07 17:42:19 +01:00
<Compile Include="LiveTv\AudioRecordingService.cs" />
<Compile Include="LiveTv\ChannelMetadataService.cs" />
<Compile Include="LiveTv\ProgramMetadataService.cs" />
2014-02-07 17:42:19 +01:00
<Compile Include="LiveTv\VideoRecordingService.cs" />
<Compile Include="Manager\ImageSaver.cs" />
<Compile Include="Manager\ItemImageProvider.cs" />
<Compile Include="Manager\ProviderManager.cs" />
<Compile Include="Manager\MetadataService.cs" />
<Compile Include="Manager\SeriesOrderManager.cs" />
<Compile Include="MediaInfo\FFProbeAudioInfo.cs" />
<Compile Include="MediaInfo\FFProbeProvider.cs" />
<Compile Include="MediaInfo\FFProbeVideoInfo.cs" />
2014-05-07 04:28:19 +02:00
<Compile Include="MediaInfo\SubtitleDownloader.cs" />
2014-05-16 21:16:29 +02:00
<Compile Include="MediaInfo\SubtitleResolver.cs" />
<Compile Include="MediaInfo\SubtitleScheduledTask.cs" />
2015-03-14 21:00:32 +01:00
<Compile Include="Movies\LiveTvMovieDbProvider.cs" />
2014-02-07 04:10:13 +01:00
<Compile Include="Movies\MovieDbTrailerProvider.cs" />
2014-02-21 19:48:15 +01:00
<Compile Include="Movies\MovieExternalIds.cs" />
<Compile Include="Movies\GenericMovieDbInfo.cs" />
2014-01-30 22:23:54 +01:00
<Compile Include="Movies\MovieDbSearch.cs" />
<Compile Include="Movies\MovieMetadataService.cs" />
<Compile Include="Movies\TmdbSettings.cs" />
<Compile Include="MusicGenres\MusicGenreImageProvider.cs" />
<Compile Include="GameGenres\GameGenreImageProvider.cs" />
<Compile Include="Genres\GenreImageProvider.cs" />
2013-12-30 17:32:01 +01:00
<Compile Include="ImagesByName\ImageUtils.cs" />
2013-06-09 18:47:28 +02:00
<Compile Include="MediaInfo\AudioImageProvider.cs" />
<Compile Include="MediaInfo\VideoImageProvider.cs" />
<Compile Include="Movies\MovieDbImageProvider.cs" />
<Compile Include="Movies\FanartMovieImageProvider.cs" />
<Compile Include="MusicGenres\MusicGenreMetadataService.cs" />
<Compile Include="Music\AlbumImageFromSongProvider.cs" />
2014-01-31 20:55:21 +01:00
<Compile Include="Music\AlbumMetadataService.cs" />
2014-01-31 05:50:09 +01:00
<Compile Include="Music\ArtistMetadataService.cs" />
2014-02-09 22:11:11 +01:00
<Compile Include="Music\AudioDbAlbumImageProvider.cs" />
<Compile Include="Music\AudioDbAlbumProvider.cs" />
2014-02-09 08:27:44 +01:00
<Compile Include="Music\AudioDbArtistImageProvider.cs" />
<Compile Include="Music\AudioDbArtistProvider.cs" />
2014-02-21 19:48:15 +01:00
<Compile Include="Music\AudioDbExternalIds.cs" />
<Compile Include="Music\AudioMetadataService.cs" />
<Compile Include="Music\Extensions.cs" />
2014-02-07 04:10:13 +01:00
<Compile Include="Music\MovieDbMusicVideoProvider.cs" />
<Compile Include="Music\MusicBrainzArtistProvider.cs" />
2014-02-21 19:48:15 +01:00
<Compile Include="Music\MusicExternalIds.cs" />
<Compile Include="Music\MusicVideoMetadataService.cs" />
2014-10-07 01:58:46 +02:00
<Compile Include="Omdb\OmdbImageProvider.cs" />
2014-02-03 21:51:28 +01:00
<Compile Include="Omdb\OmdbProvider.cs" />
2014-02-07 17:42:19 +01:00
<Compile Include="Omdb\OmdbItemProvider.cs" />
<Compile Include="People\MovieDbPersonImageProvider.cs" />
2013-06-09 18:47:28 +02:00
<Compile Include="Movies\MovieDbProvider.cs" />
2014-02-02 03:23:27 +01:00
<Compile Include="Music\FanArtAlbumProvider.cs" />
<Compile Include="Music\FanArtArtistProvider.cs" />
<Compile Include="Music\MusicBrainzAlbumProvider.cs" />
<Compile Include="People\PersonMetadataService.cs" />
<Compile Include="People\MovieDbPersonProvider.cs" />
2014-10-20 05:04:45 +02:00
<Compile Include="Photos\PhotoAlbumMetadataService.cs" />
2014-02-13 06:11:54 +01:00
<Compile Include="Photos\PhotoHelper.cs" />
<Compile Include="Photos\PhotoMetadataService.cs" />
<Compile Include="Photos\PhotoProvider.cs" />
<Compile Include="Playlists\PlaylistMetadataService.cs" />
2013-06-09 18:47:28 +02:00
<Compile Include="Properties\AssemblyInfo.cs" />
2014-02-08 21:02:35 +01:00
<Compile Include="Manager\ProviderUtils.cs" />
<Compile Include="Studios\StudiosImageProvider.cs" />
<Compile Include="Studios\StudioMetadataService.cs" />
2014-08-11 00:13:17 +02:00
<Compile Include="Subtitles\ConfigurationExtension.cs" />
2014-05-05 06:36:45 +02:00
<Compile Include="Subtitles\OpenSubtitleDownloader.cs" />
2014-05-07 04:28:19 +02:00
<Compile Include="Subtitles\SubtitleManager.cs" />
2015-01-14 05:20:30 +01:00
<Compile Include="TV\DummySeasonProvider.cs" />
<Compile Include="TV\EpisodeMetadataService.cs" />
2016-03-11 02:51:10 +01:00
<Compile Include="TV\FanArt\FanArtSeasonProvider.cs" />
<Compile Include="TV\FanArt\FanartSeriesProvider.cs" />
<Compile Include="TV\MissingEpisodeProvider.cs" />
2016-03-11 02:51:10 +01:00
<Compile Include="TV\TheMovieDb\MovieDbProviderBase.cs" />
<Compile Include="TV\TheMovieDb\MovieDbEpisodeImageProvider.cs" />
<Compile Include="TV\TheMovieDb\MovieDbSeasonProvider.cs" />
<Compile Include="TV\TheMovieDb\MovieDbSeriesImageProvider.cs" />
<Compile Include="TV\TheMovieDb\MovieDbSeriesProvider.cs" />
<Compile Include="TV\TheMovieDb\MovieDbEpisodeProvider.cs" />
<Compile Include="TV\Omdb\OmdbEpisodeProvider.cs" />
2014-02-03 21:51:28 +01:00
<Compile Include="TV\SeriesMetadataService.cs" />
2016-03-11 02:51:10 +01:00
<Compile Include="TV\TheTVDB\TvdbEpisodeImageProvider.cs" />
<Compile Include="People\TvdbPersonImageProvider.cs" />
2016-03-11 02:51:10 +01:00
<Compile Include="TV\TheTVDB\TvdbSeasonImageProvider.cs" />
<Compile Include="TV\TheTVDB\TvdbSeriesImageProvider.cs" />
2014-02-03 06:35:43 +01:00
<Compile Include="TV\SeasonMetadataService.cs" />
2016-03-11 02:51:10 +01:00
<Compile Include="TV\TheTVDB\TvdbEpisodeProvider.cs" />
<Compile Include="TV\TheTVDB\TvdbSeriesProvider.cs" />
<Compile Include="TV\SeriesPostScanTask.cs" />
2016-03-11 02:51:10 +01:00
<Compile Include="TV\TheTVDB\TvdbPrescanTask.cs" />
2014-02-21 19:48:15 +01:00
<Compile Include="TV\TvExternalIds.cs" />
2014-01-30 22:23:54 +01:00
<Compile Include="Users\UserMetadataService.cs" />
<Compile Include="Videos\VideoMetadataService.cs" />
<Compile Include="Years\YearMetadataService.cs" />
2013-06-09 18:47:28 +02: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-06-09 18:47:28 +02:00
<Name>MediaBrowser.Common</Name>
</ProjectReference>
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
2013-09-24 23:06:21 +02:00
<Project>{17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2}</Project>
2013-06-09 18:47:28 +02:00
<Name>MediaBrowser.Controller</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-06-09 18:47:28 +02:00
<Name>MediaBrowser.Model</Name>
</ProjectReference>
2014-05-05 06:36:45 +02:00
<ProjectReference Include="..\OpenSubtitlesHandler\OpenSubtitlesHandler.csproj">
<Project>{4a4402d4-e910-443b-b8fc-2c18286a2ca0}</Project>
<Name>OpenSubtitlesHandler</Name>
</ProjectReference>
2013-06-09 18:47:28 +02:00
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
2013-06-09 18:47:28 +02:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- 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>
-->
2014-08-11 00:13:17 +02:00
</Project>