MediaBrowser.Model.csproj 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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\DtoUserItemData.cs" />
  40. <Compile Include="DTO\MovieInfo.cs" />
  41. <Compile Include="DTO\SeriesInfo.cs" />
  42. <Compile Include="Authentication\AuthenticationResult.cs" />
  43. <Compile Include="DTO\DtoBaseItem.cs" />
  44. <Compile Include="DTO\DtoUser.cs" />
  45. <Compile Include="DTO\VideoInfo.cs" />
  46. <Compile Include="DTO\VideoOutputFormats.cs" />
  47. <Compile Include="DTO\IbnItem.cs" />
  48. <Compile Include="Entities\AudioStream.cs" />
  49. <Compile Include="Entities\ImageType.cs" />
  50. <Compile Include="Entities\IHasProviderIds.cs" />
  51. <Compile Include="Entities\ItemSpecialCounts.cs" />
  52. <Compile Include="Entities\MetadataProviders.cs" />
  53. <Compile Include="Entities\SubtitleStream.cs" />
  54. <Compile Include="Entities\VideoType.cs" />
  55. <Compile Include="Plugins\BasePluginConfiguration.cs" />
  56. <Compile Include="DTO\PluginInfo.cs" />
  57. <Compile Include="Progress\TaskProgress.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <Compile Include="Weather\WeatherForecast.cs" />
  60. <Compile Include="Weather\WeatherInfo.cs" />
  61. <Compile Include="Weather\WeatherStatus.cs" />
  62. <Compile Include="Weather\WeatherUnits.cs" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Reference Include="protobuf-net">
  66. <HintPath>..\protobuf-net\Full\portable\protobuf-net.dll</HintPath>
  67. </Reference>
  68. </ItemGroup>
  69. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  70. <PropertyGroup>
  71. <PostBuildEvent>"$(ProjectDir)..\protobuf-net\Precompile\precompile.exe" "$(TargetPath)" -o:"$(ProjectDir)bin\ProtobufModelSerializer.dll" -t:ProtobufModelSerializer</PostBuildEvent>
  72. </PropertyGroup>
  73. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  74. Other similar extension points exist, see Microsoft.Common.targets.
  75. <Target Name="BeforeBuild">
  76. </Target>
  77. <Target Name="AfterBuild">
  78. </Target>
  79. -->
  80. </Project>