Emby.Photos.csproj 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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>{89AB4548-770D-41FD-A891-8DAFF44F452C}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Emby.Photos</RootNamespace>
  11. <AssemblyName>Emby.Photos</AssemblyName>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
  15. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  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. <Reference Include="TagLib.Portable">
  36. <HintPath>..\ThirdParty\taglib\TagLib.Portable.dll</HintPath>
  37. </Reference>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Compile Include="..\SharedVersion.cs">
  41. <Link>Properties\SharedVersion.cs</Link>
  42. </Compile>
  43. <Compile Include="PhotoProvider.cs" />
  44. <Compile Include="Properties\AssemblyInfo.cs" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  48. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  49. <Name>MediaBrowser.Common</Name>
  50. </ProjectReference>
  51. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  52. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  53. <Name>MediaBrowser.Controller</Name>
  54. </ProjectReference>
  55. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  56. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  57. <Name>MediaBrowser.Model</Name>
  58. </ProjectReference>
  59. </ItemGroup>
  60. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  61. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  62. Other similar extension points exist, see Microsoft.Common.targets.
  63. <Target Name="BeforeBuild">
  64. </Target>
  65. <Target Name="AfterBuild">
  66. </Target>
  67. -->
  68. </Project>