MediaBrowser.LocalMetadata.csproj 4.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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\ImagesByNameImageProvider.cs" />
  43. <Compile Include="Images\InternalMetadataFolderImageProvider.cs" />
  44. <Compile Include="Images\LocalImageProvider.cs" />
  45. <Compile Include="Parsers\BaseItemXmlParser.cs" />
  46. <Compile Include="Parsers\BoxSetXmlParser.cs" />
  47. <Compile Include="Parsers\EpisodeXmlParser.cs" />
  48. <Compile Include="Parsers\GameSystemXmlParser.cs" />
  49. <Compile Include="Parsers\GameXmlParser.cs" />
  50. <Compile Include="Parsers\MovieXmlParser.cs" />
  51. <Compile Include="Parsers\MusicVideoXmlParser.cs" />
  52. <Compile Include="Parsers\PlaylistXmlParser.cs" />
  53. <Compile Include="Parsers\SeriesXmlParser.cs" />
  54. <Compile Include="Properties\AssemblyInfo.cs" />
  55. <Compile Include="Providers\BoxSetXmlProvider.cs" />
  56. <Compile Include="Providers\EpisodeXmlProvider.cs" />
  57. <Compile Include="Providers\FolderXmlProvider.cs" />
  58. <Compile Include="Providers\GameSystemXmlProvider.cs" />
  59. <Compile Include="Providers\GameXmlProvider.cs" />
  60. <Compile Include="Providers\MovieXmlProvider.cs" />
  61. <Compile Include="Providers\MusicVideoXmlProvider.cs" />
  62. <Compile Include="Providers\PlaylistXmlProvider.cs" />
  63. <Compile Include="Providers\SeriesXmlProvider.cs" />
  64. <Compile Include="Providers\VideoXmlProvider.cs" />
  65. <Compile Include="Savers\BaseXmlSaver.cs" />
  66. <Compile Include="Savers\BoxSetXmlSaver.cs" />
  67. <Compile Include="Savers\FolderXmlSaver.cs" />
  68. <Compile Include="Savers\GameSystemXmlSaver.cs" />
  69. <Compile Include="Savers\GameXmlSaver.cs" />
  70. <Compile Include="Savers\PersonXmlSaver.cs" />
  71. <Compile Include="Savers\PlaylistXmlSaver.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  75. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  76. <Name>MediaBrowser.Common</Name>
  77. </ProjectReference>
  78. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  79. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  80. <Name>MediaBrowser.Controller</Name>
  81. </ProjectReference>
  82. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  83. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  84. <Name>MediaBrowser.Model</Name>
  85. </ProjectReference>
  86. </ItemGroup>
  87. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>