MediaBrowser.Plugins.MpcHc.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>{2E94BC08-A7A2-42DD-9893-EAA3DACD1CF9}</ProjectGuid>
  8. <OutputType>library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Plugins.MpcHc</RootNamespace>
  11. <AssemblyName>MediaBrowser.Plugins.MpcHc</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  17. <RestorePackages>true</RestorePackages>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <RunPostBuildEvent>Always</RunPostBuildEvent>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. <Reference Include="System.ComponentModel.Composition" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Net.Http" />
  44. <Reference Include="System.Xml" />
  45. <Reference Include="Microsoft.CSharp" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Data.DataSetExtensions" />
  49. <Reference Include="System.Xaml">
  50. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  51. </Reference>
  52. <Reference Include="WindowsBase" />
  53. <Reference Include="PresentationCore" />
  54. <Reference Include="PresentationFramework" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="MpcHcMediaPlayer.cs" />
  58. <Compile Include="Plugin.cs" />
  59. <Compile Include="Properties\AssemblyInfo.cs">
  60. <SubType>Code</SubType>
  61. </Compile>
  62. <Compile Include="Properties\Resources.Designer.cs">
  63. <AutoGen>True</AutoGen>
  64. <DesignTime>True</DesignTime>
  65. <DependentUpon>Resources.resx</DependentUpon>
  66. </Compile>
  67. <Compile Include="Properties\Settings.Designer.cs">
  68. <AutoGen>True</AutoGen>
  69. <DependentUpon>Settings.settings</DependentUpon>
  70. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  71. </Compile>
  72. <EmbeddedResource Include="Properties\Resources.resx">
  73. <Generator>ResXFileCodeGenerator</Generator>
  74. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  75. </EmbeddedResource>
  76. <None Include="app.config" />
  77. <None Include="Properties\Settings.settings">
  78. <Generator>SettingsSingleFileGenerator</Generator>
  79. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  80. </None>
  81. <AppDesigner Include="Properties\" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  85. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  86. <Name>MediaBrowser.Common</Name>
  87. </ProjectReference>
  88. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  89. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  90. <Name>MediaBrowser.Model</Name>
  91. </ProjectReference>
  92. <ProjectReference Include="..\MediaBrowser.UI\MediaBrowser.UI.csproj">
  93. <Project>{b5ece1fb-618e-420b-9a99-8e972d76920a}</Project>
  94. <Name>MediaBrowser.UI</Name>
  95. </ProjectReference>
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. <PropertyGroup>
  99. <PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)\ProgramData-Server\Plugins\" /y</PostBuildEvent>
  100. </PropertyGroup>
  101. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  102. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  103. Other similar extension points exist, see Microsoft.Common.targets.
  104. <Target Name="BeforeBuild">
  105. </Target>
  106. <Target Name="AfterBuild">
  107. </Target>
  108. -->
  109. </Project>