MediaBrowser.LocalMetadata.csproj 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>{7EF9F3E0-697D-42F3-A08F-19DEB5F84392}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.LocalMetadata</RootNamespace>
  11. <AssemblyName>MediaBrowser.LocalMetadata</AssemblyName>
  12. <FileAlignment>512</FileAlignment>
  13. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  14. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
  16. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>none</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Compile Include="..\SharedVersion.cs">
  37. <Link>Properties\SharedVersion.cs</Link>
  38. </Compile>
  39. <Compile Include="BaseXmlProvider.cs" />
  40. <Compile Include="Images\CollectionFolderImageProvider.cs" />
  41. <Compile Include="Images\EpisodeLocalImageProvider.cs" />
  42. <Compile Include="Images\InternalMetadataFolderImageProvider.cs" />
  43. <Compile Include="Images\LocalImageProvider.cs" />
  44. <Compile Include="Parsers\BaseItemXmlParser.cs" />
  45. <Compile Include="Parsers\BoxSetXmlParser.cs" />
  46. <Compile Include="Parsers\GameSystemXmlParser.cs" />
  47. <Compile Include="Parsers\GameXmlParser.cs" />
  48. <Compile Include="Parsers\PlaylistXmlParser.cs" />
  49. <Compile Include="Properties\AssemblyInfo.cs" />
  50. <Compile Include="Providers\BoxSetXmlProvider.cs" />
  51. <Compile Include="Providers\FolderXmlProvider.cs" />
  52. <Compile Include="Providers\GameSystemXmlProvider.cs" />
  53. <Compile Include="Providers\GameXmlProvider.cs" />
  54. <Compile Include="Providers\PlaylistXmlProvider.cs" />
  55. <Compile Include="Savers\BaseXmlSaver.cs" />
  56. <Compile Include="Savers\BoxSetXmlSaver.cs" />
  57. <Compile Include="Savers\FolderXmlSaver.cs" />
  58. <Compile Include="Savers\GameSystemXmlSaver.cs" />
  59. <Compile Include="Savers\GameXmlSaver.cs" />
  60. <Compile Include="Savers\PersonXmlSaver.cs" />
  61. <Compile Include="Savers\PlaylistXmlSaver.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  65. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  66. <Name>MediaBrowser.Common</Name>
  67. </ProjectReference>
  68. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  69. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  70. <Name>MediaBrowser.Controller</Name>
  71. </ProjectReference>
  72. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  73. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  74. <Name>MediaBrowser.Model</Name>
  75. </ProjectReference>
  76. </ItemGroup>
  77. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  78. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  79. Other similar extension points exist, see Microsoft.Common.targets.
  80. <Target Name="BeforeBuild">
  81. </Target>
  82. <Target Name="AfterBuild">
  83. </Target>
  84. -->
  85. </Project>