MediaBrowser.Model.csproj 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Model</RootNamespace>
  11. <AssemblyName>MediaBrowser.Model</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <TargetFrameworkProfile>Profile4</TargetFrameworkProfile>
  14. <FileAlignment>512</FileAlignment>
  15. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Compile Include="Configuration\BaseApplicationConfiguration.cs" />
  36. <Compile Include="Configuration\ServerConfiguration.cs" />
  37. <Compile Include="DTO\AudioInfo.cs" />
  38. <Compile Include="DTO\AudioOutputFormats.cs" />
  39. <Compile Include="DTO\SeriesInfo.cs" />
  40. <Compile Include="Authentication\AuthenticationResult.cs" />
  41. <Compile Include="DTO\DTOBaseItem.cs" />
  42. <Compile Include="DTO\DTOUser.cs" />
  43. <Compile Include="DTO\VideoInfo.cs" />
  44. <Compile Include="DTO\VideoOutputFormats.cs" />
  45. <Compile Include="Entities\Audio.cs" />
  46. <Compile Include="Entities\BaseEntity.cs" />
  47. <Compile Include="Entities\BaseItem.cs" />
  48. <Compile Include="DTO\IBNItem.cs" />
  49. <Compile Include="Entities\Folder.cs" />
  50. <Compile Include="Entities\Genre.cs" />
  51. <Compile Include="Entities\ImageType.cs" />
  52. <Compile Include="Entities\IHasProviderIds.cs" />
  53. <Compile Include="Entities\ItemSpecialCounts.cs" />
  54. <Compile Include="Entities\MetadataProviders.cs" />
  55. <Compile Include="Entities\Movies\BoxSet.cs" />
  56. <Compile Include="Entities\Movies\Movie.cs" />
  57. <Compile Include="Entities\Person.cs" />
  58. <Compile Include="Entities\Studio.cs" />
  59. <Compile Include="Entities\TV\Episode.cs" />
  60. <Compile Include="Entities\TV\Season.cs" />
  61. <Compile Include="Entities\TV\Series.cs" />
  62. <Compile Include="Entities\Video.cs" />
  63. <Compile Include="Entities\Year.cs" />
  64. <Compile Include="Plugins\BasePluginConfiguration.cs" />
  65. <Compile Include="DTO\PluginInfo.cs" />
  66. <Compile Include="Progress\TaskProgress.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. <Compile Include="Entities\User.cs" />
  69. <Compile Include="Entities\UserItemData.cs" />
  70. <Compile Include="Weather\WeatherForecast.cs" />
  71. <Compile Include="Weather\WeatherInfo.cs" />
  72. <Compile Include="Weather\WeatherStatus.cs" />
  73. <Compile Include="Weather\WeatherUnits.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <Reference Include="protobuf-net">
  77. <HintPath>..\protobuf-net\Full\portable\protobuf-net.dll</HintPath>
  78. </Reference>
  79. </ItemGroup>
  80. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  81. <PropertyGroup>
  82. <PostBuildEvent>"$(ProjectDir)..\protobuf-net\Precompile\precompile.exe" "$(TargetPath)" -o:"$(ProjectDir)bin\ProtobufModelSerializer.dll" -t:ProtobufModelSerializer</PostBuildEvent>
  83. </PropertyGroup>
  84. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  85. Other similar extension points exist, see Microsoft.Common.targets.
  86. <Target Name="BeforeBuild">
  87. </Target>
  88. <Target Name="AfterBuild">
  89. </Target>
  90. -->
  91. </Project>