jellyfin/MediaBrowser.Controller/MediaBrowser.Controller.csproj

220 lines
10 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>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<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-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>
</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>
</PropertyGroup>
<PropertyGroup>
<RunPostBuildEvent>Always</RunPostBuildEvent>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2013-09-24 23:06:21 +02:00
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
2013-02-21 02:33:05 +01:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2013-09-24 23:06:21 +02:00
<WarningLevel>4</WarningLevel>
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-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" />
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" />
2013-06-27 21:29:58 +02:00
<Compile Include="Entities\IItemByName.cs" />
2013-09-27 17:23:27 +02:00
<Compile Include="Entities\ILibraryItem.cs" />
<Compile Include="Entities\ImageSourceInfo.cs" />
2013-07-05 15:47:10 +02:00
<Compile Include="Entities\LinkedChild.cs" />
<Compile Include="Entities\MusicVideo.cs" />
<Compile Include="IO\IFileSystem.cs" />
<Compile Include="Library\ILibraryPostScanTask.cs" />
<Compile Include="Library\ILibraryPrescanTask.cs" />
2013-06-09 18:23:06 +02:00
<Compile Include="Library\IMetadataSaver.cs" />
<Compile Include="Library\IPeoplePrescanTask.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" />
<Compile Include="LiveTv\ChannelInfo.cs" />
<Compile Include="LiveTv\ILiveTvManager.cs" />
<Compile Include="LiveTv\ILiveTvService.cs" />
<Compile Include="Localization\ILocalizationManager.cs" />
2013-07-06 23:23:32 +02:00
<Compile Include="Notifications\INotificationsRepository.cs" />
<Compile Include="Notifications\NotificationUpdateEventArgs.cs" />
<Compile Include="Providers\IDynamicInfoProvider.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\Artist.cs" />
2013-02-21 02:33:05 +01:00
<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" />
<Compile Include="Entities\IndexFolder.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" />
2013-03-28 23:00:58 +01:00
<Compile Include="Library\ILibrarySearchEngine.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" />
2013-02-23 08:57:11 +01:00
<Compile Include="IO\FileSystem.cs" />
<Compile Include="IO\IDirectoryWatchers.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="Kernel.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\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" />
</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>
<PostBuildEvent>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>
<Import Project="$(SolutionDir)\.nuget\nuget.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>
-->
2012-07-12 08:55:27 +02:00
</Project>