jellyfin/MediaBrowser.Model/MediaBrowser.Model.csproj

187 lines
9.0 KiB
XML
Raw Normal View History

2013-02-20 18:33:05 -07: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>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MediaBrowser.Model</RootNamespace>
<AssemblyName>MediaBrowser.Model</AssemblyName>
2013-07-27 06:45:46 -07:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2013-02-20 18:33:05 -07:00
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<FodyPath>..\packages\Fody.1.17.0.0</FodyPath>
2013-02-20 18:33:05 -07: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-07-27 06:45:46 -07:00
<PlatformTarget>AnyCPU</PlatformTarget>
2013-02-20 18:33:05 -07: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>
</PropertyGroup>
<PropertyGroup>
<RunPostBuildEvent>Always</RunPostBuildEvent>
</PropertyGroup>
<ItemGroup>
2013-02-22 00:17:50 -07:00
<Compile Include="..\SharedVersion.cs">
<Link>Properties\SharedVersion.cs</Link>
</Compile>
2013-07-08 19:38:18 -07:00
<Compile Include="ApiClient\HttpResponseEventArgs.cs" />
2013-06-02 17:21:35 -07:00
<Compile Include="ApiClient\IApiClient.cs" />
<Compile Include="ApiClient\ApiClientExtensions.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Configuration\BaseApplicationConfiguration.cs" />
2013-07-08 09:13:21 -07:00
<Compile Include="Configuration\ManualLoginCategory.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Configuration\ServerConfiguration.cs" />
2013-09-19 12:46:19 -07:00
<Compile Include="Drawing\ImageOverlay.cs" />
<Compile Include="Drawing\ImageOutputFormat.cs" />
2013-02-21 10:56:21 -07:00
<Compile Include="Dto\BaseItemPerson.cs" />
<Compile Include="Dto\ChapterInfoDto.cs" />
<Compile Include="Dto\IItemDto.cs" />
2013-05-04 21:49:49 -07:00
<Compile Include="Dto\ImageInfo.cs" />
2013-04-16 22:36:56 -07:00
<Compile Include="Dto\ItemByNameCounts.cs" />
<Compile Include="Dto\ItemCounts.cs" />
<Compile Include="Dto\StudioDto.cs" />
2013-07-12 12:56:40 -07:00
<Compile Include="Entities\CollectionType.cs" />
2013-04-24 17:58:56 -07:00
<Compile Include="Entities\ItemReview.cs" />
<Compile Include="Entities\MediaUrl.cs" />
2013-06-09 07:15:59 -07:00
<Compile Include="Entities\MetadataFields.cs" />
2013-06-25 11:10:39 -07:00
<Compile Include="Entities\Video3DFormat.cs" />
2013-08-09 18:16:31 -07:00
<Compile Include="IO\IIsoManager.cs" />
<Compile Include="IO\IIsoMount.cs" />
<Compile Include="IO\IIsoMounter.cs" />
2013-03-25 21:33:47 -07:00
<Compile Include="Net\WebSocketMessage.cs" />
<Compile Include="Net\WebSocketMessageType.cs" />
<Compile Include="Net\WebSocketState.cs" />
2013-07-06 14:23:32 -07:00
<Compile Include="Notifications\Notification.cs" />
<Compile Include="Notifications\NotificationLevel.cs" />
<Compile Include="Notifications\NotificationQuery.cs" />
<Compile Include="Notifications\NotificationResult.cs" />
<Compile Include="Notifications\NotificationsSummary.cs" />
2013-04-24 07:30:12 -07:00
<Compile Include="Querying\ArtistsQuery.cs" />
2013-05-10 21:10:58 -07:00
<Compile Include="Querying\ItemReviewsResult.cs" />
2013-03-09 22:36:39 -07:00
<Compile Include="Querying\ItemsByNameQuery.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Entities\BaseItemInfo.cs" />
2013-06-16 18:48:55 -07:00
<Compile Include="Querying\NextUpQuery.cs" />
2013-06-03 19:02:49 -07:00
<Compile Include="Querying\SimilarItemsQuery.cs" />
<Compile Include="Querying\UserQuery.cs" />
2013-05-09 15:43:11 -07:00
<Compile Include="Session\BrowseRequest.cs" />
2013-08-27 21:16:21 -07:00
<Compile Include="Session\MessageCommand.cs" />
2013-05-09 15:43:11 -07:00
<Compile Include="Session\PlayRequest.cs" />
<Compile Include="Session\PlaystateCommand.cs" />
<Compile Include="Entities\ImageDownloadOptions.cs" />
2013-02-26 10:21:18 -07:00
<Compile Include="Logging\ILogManager.cs" />
2013-02-20 23:38:23 -07:00
<Compile Include="MediaInfo\BlurayDiscInfo.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Entities\ChapterInfo.cs" />
<Compile Include="Entities\LocationType.cs" />
<Compile Include="Entities\MBRegistrationRecord.cs" />
<Compile Include="Entities\MediaType.cs" />
<Compile Include="Entities\PersonType.cs" />
<Compile Include="Entities\PluginSecurityInfo.cs" />
<Compile Include="Globalization\CountryInfo.cs" />
<Compile Include="Globalization\CultureDto.cs" />
<Compile Include="IO\FileSystemEntryInfo.cs" />
2013-02-21 10:56:21 -07:00
<Compile Include="Dto\ImageOptions.cs" />
2013-03-09 22:36:39 -07:00
<Compile Include="Querying\ItemFilter.cs" />
<Compile Include="Querying\ItemQuery.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Entities\LibraryUpdateInfo.cs" />
<Compile Include="Entities\ParentalRating.cs" />
2013-02-21 10:56:21 -07:00
<Compile Include="Dto\StreamOptions.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Entities\VirtualFolderInfo.cs" />
<Compile Include="Entities\IHasMediaStreams.cs" />
<Compile Include="Extensions\ModelExtensions.cs" />
2013-02-20 22:00:56 -07:00
<Compile Include="IO\IZipClient.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Logging\ILogger.cs" />
<Compile Include="Logging\LogSeverity.cs" />
2013-02-20 23:38:23 -07:00
<Compile Include="MediaInfo\IBlurayExaminer.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Net\HttpException.cs" />
<Compile Include="Net\NetworkShare.cs" />
<Compile Include="Net\NetworkShareType.cs" />
2013-04-24 07:30:12 -07:00
<Compile Include="Querying\PersonsQuery.cs" />
2013-04-24 09:37:12 -07:00
<Compile Include="Querying\ThemeSongsResult.cs" />
2013-04-27 06:05:33 -07:00
<Compile Include="Search\SearchHint.cs" />
2013-04-26 12:20:53 -07:00
<Compile Include="Search\SearchHintResult.cs" />
2013-02-24 14:53:54 -07:00
<Compile Include="Serialization\IJsonSerializer.cs" />
<Compile Include="Serialization\IXmlSerializer.cs" />
2013-05-09 15:43:11 -07:00
<Compile Include="Session\SessionInfoDto.cs" />
2013-08-27 21:16:21 -07:00
<Compile Include="Session\SystemCommand.cs" />
2013-02-21 21:23:06 -07:00
<Compile Include="Updates\CheckForUpdateResult.cs" />
2013-04-03 11:18:36 -07:00
<Compile Include="Updates\PackageTargetSystem.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Updates\InstallationInfo.cs" />
<Compile Include="Updates\PackageType.cs" />
<Compile Include="Updates\PackageVersionClass.cs" />
<Compile Include="Entities\RequestResult.cs" />
<Compile Include="Configuration\UserConfiguration.cs" />
<Compile Include="Drawing\DrawingUtils.cs" />
2013-02-21 10:56:21 -07:00
<Compile Include="Dto\UserItemDataDto.cs" />
2013-03-09 22:36:39 -07:00
<Compile Include="Querying\ItemFields.cs" />
<Compile Include="Querying\ItemSortBy.cs" />
2013-02-21 10:56:21 -07:00
<Compile Include="Dto\BaseItemDto.cs" />
<Compile Include="Dto\UserDto.cs" />
2013-03-09 22:36:39 -07:00
<Compile Include="Querying\ItemsResult.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Entities\DisplayPreferences.cs" />
<Compile Include="Entities\ImageType.cs" />
<Compile Include="Entities\IHasProviderIds.cs" />
<Compile Include="Entities\MetadataProviders.cs" />
<Compile Include="Entities\SeriesStatus.cs" />
<Compile Include="Entities\MediaStream.cs" />
<Compile Include="Entities\VideoType.cs" />
<Compile Include="Plugins\BasePluginConfiguration.cs" />
<Compile Include="Plugins\PluginInfo.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="System\SystemInfo.cs" />
<Compile Include="Tasks\SystemEvent.cs" />
<Compile Include="Tasks\TaskCompletionStatus.cs" />
<Compile Include="Tasks\TaskResult.cs" />
<Compile Include="Tasks\TaskInfo.cs" />
<Compile Include="Tasks\TaskState.cs" />
<Compile Include="Tasks\TaskTriggerInfo.cs" />
<Compile Include="Updates\PackageInfo.cs" />
<Compile Include="Updates\PackageVersionInfo.cs" />
2013-07-08 09:13:21 -07:00
<Compile Include="Users\AuthenticationResult.cs" />
2013-06-24 07:06:25 -07:00
<Compile Include="Weather\WeatherUnits.cs" />
2013-02-20 18:33:05 -07:00
<Compile Include="Web\QueryStringDictionary.cs" />
<None Include="Fody.targets" />
2013-02-20 18:33:05 -07:00
<None Include="FodyWeavers.xml" />
<None Include="packages.config" />
2013-02-20 18:33:05 -07:00
</ItemGroup>
<ItemGroup>
2013-07-27 06:45:46 -07:00
<Reference Include="Microsoft.CSharp" />
<Reference Include="PropertyChanged, Version=1.41.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\PropertyChanged.Fody.1.41.0.0\Lib\NET35\PropertyChanged.dll</HintPath>
<Private>False</Private>
</Reference>
2013-07-27 06:45:46 -07:00
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
2013-02-20 18:33:05 -07:00
</ItemGroup>
2013-07-27 06:45:46 -07:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
2013-02-20 18:33:05 -07:00
<PropertyGroup>
<PostBuildEvent>if $(ConfigurationName) == Release (
2013-07-28 01:45:44 -07:00
xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\net45\" /y /d /r /i
)</PostBuildEvent>
2013-02-20 18:33:05 -07:00
</PropertyGroup>
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<Import Project="Fody.targets" />
2013-02-20 18:33:05 -07: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-11 23:55:27 -07:00
</Project>