MediaBrowser.UI.csproj 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311
  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>{B5ECE1FB-618E-420B-9A99-8E972D76920A}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.UI</RootNamespace>
  11. <AssemblyName>MediaBrowser.UI</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. <IsWebBootstrapper>true</IsWebBootstrapper>
  17. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  18. <RestorePackages>true</RestorePackages>
  19. <PublishUrl>http://www.mb3admin.com/downloads/stdui/</PublishUrl>
  20. <Install>true</Install>
  21. <InstallFrom>Web</InstallFrom>
  22. <UpdateEnabled>false</UpdateEnabled>
  23. <UpdateMode>Background</UpdateMode>
  24. <UpdateInterval>7</UpdateInterval>
  25. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  26. <UpdatePeriodically>false</UpdatePeriodically>
  27. <UpdateRequired>false</UpdateRequired>
  28. <MapFileExtensions>true</MapFileExtensions>
  29. <SupportUrl>http://forum.mediabrowser3.com</SupportUrl>
  30. <ProductName>Media Browser Theater</ProductName>
  31. <PublisherName>Media Browser Team</PublisherName>
  32. <SuiteName>Media Browser 3</SuiteName>
  33. <ApplicationRevision>2646</ApplicationRevision>
  34. <ApplicationVersion>2.9.4795.2646</ApplicationVersion>
  35. <UseApplicationTrust>false</UseApplicationTrust>
  36. <CreateDesktopShortcut>true</CreateDesktopShortcut>
  37. <PublishWizardCompleted>true</PublishWizardCompleted>
  38. <BootstrapperEnabled>true</BootstrapperEnabled>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  41. <PlatformTarget>AnyCPU</PlatformTarget>
  42. <DebugSymbols>true</DebugSymbols>
  43. <DebugType>full</DebugType>
  44. <Optimize>false</Optimize>
  45. <OutputPath>bin\Debug\</OutputPath>
  46. <DefineConstants>DEBUG;TRACE</DefineConstants>
  47. <ErrorReport>prompt</ErrorReport>
  48. <WarningLevel>4</WarningLevel>
  49. </PropertyGroup>
  50. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  51. <PlatformTarget>AnyCPU</PlatformTarget>
  52. <DebugType>pdbonly</DebugType>
  53. <Optimize>true</Optimize>
  54. <OutputPath>bin\Release\</OutputPath>
  55. <DefineConstants>TRACE</DefineConstants>
  56. <ErrorReport>prompt</ErrorReport>
  57. <WarningLevel>4</WarningLevel>
  58. </PropertyGroup>
  59. <PropertyGroup>
  60. <StartupObject>MediaBrowser.UI.App</StartupObject>
  61. </PropertyGroup>
  62. <PropertyGroup>
  63. <ApplicationIcon>Resources\Images\Icon.ico</ApplicationIcon>
  64. </PropertyGroup>
  65. <PropertyGroup>
  66. <ManifestCertificateThumbprint>9633DCDB4A07D3328EFB99299C6DFB1823EBC4BE</ManifestCertificateThumbprint>
  67. </PropertyGroup>
  68. <PropertyGroup>
  69. <ManifestKeyFile>MediaBrowser.UI_TemporaryKey.pfx</ManifestKeyFile>
  70. </PropertyGroup>
  71. <PropertyGroup>
  72. <GenerateManifests>true</GenerateManifests>
  73. </PropertyGroup>
  74. <PropertyGroup>
  75. <SignManifests>true</SignManifests>
  76. </PropertyGroup>
  77. <PropertyGroup>
  78. <ManifestTimestampUrl>http://timestamp.verisign.com/scripts/timstamp.dll</ManifestTimestampUrl>
  79. </PropertyGroup>
  80. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  81. <PlatformTarget>x86</PlatformTarget>
  82. <OutputPath>bin\x86\Debug\</OutputPath>
  83. </PropertyGroup>
  84. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  85. <PlatformTarget>x86</PlatformTarget>
  86. <OutputPath>bin\x86\Release\</OutputPath>
  87. </PropertyGroup>
  88. <ItemGroup>
  89. <Reference Include="Declarations">
  90. <HintPath>..\ThirdParty\Taygeta\Declarations.dll</HintPath>
  91. </Reference>
  92. <Reference Include="Implementation">
  93. <HintPath>..\ThirdParty\Taygeta\Implementation.dll</HintPath>
  94. </Reference>
  95. <Reference Include="LibVlcWrapper">
  96. <HintPath>..\ThirdParty\Taygeta\LibVlcWrapper.dll</HintPath>
  97. </Reference>
  98. <Reference Include="MahApps.Metro">
  99. <HintPath>..\packages\MahApps.Metro.0.10.1.21-ALPHA\lib\net40\MahApps.Metro.dll</HintPath>
  100. </Reference>
  101. <Reference Include="Microsoft.Expression.Effects, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  102. <SpecificVersion>False</SpecificVersion>
  103. <HintPath>..\ThirdParty\Expression\Microsoft.Expression.Effects.dll</HintPath>
  104. </Reference>
  105. <Reference Include="Microsoft.Expression.Interactions, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  106. <SpecificVersion>False</SpecificVersion>
  107. <HintPath>..\ThirdParty\Expression\Microsoft.Expression.Interactions.dll</HintPath>
  108. </Reference>
  109. <Reference Include="NLog">
  110. <HintPath>..\packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  111. </Reference>
  112. <Reference Include="protobuf-net, Version=2.0.0.621, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
  113. <SpecificVersion>False</SpecificVersion>
  114. <HintPath>..\packages\protobuf-net.2.0.0.621\lib\net40\protobuf-net.dll</HintPath>
  115. </Reference>
  116. <Reference Include="System" />
  117. <Reference Include="System.ComponentModel.Composition" />
  118. <Reference Include="System.Data" />
  119. <Reference Include="System.Drawing" />
  120. <Reference Include="System.Net" />
  121. <Reference Include="System.Net.Http" />
  122. <Reference Include="System.Net.Http.WebRequest" />
  123. <Reference Include="System.Windows.Forms" />
  124. <Reference Include="System.Windows.Interactivity">
  125. <HintPath>..\packages\MahApps.Metro.0.10.1.21-ALPHA\lib\net40\System.Windows.Interactivity.dll</HintPath>
  126. </Reference>
  127. <Reference Include="System.Xml" />
  128. <Reference Include="Microsoft.CSharp" />
  129. <Reference Include="System.Core" />
  130. <Reference Include="System.Xml.Linq" />
  131. <Reference Include="System.Data.DataSetExtensions" />
  132. <Reference Include="System.Xaml">
  133. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  134. </Reference>
  135. <Reference Include="WindowsBase" />
  136. <Reference Include="PresentationCore" />
  137. <Reference Include="PresentationFramework" />
  138. <Reference Include="WindowsFormsIntegration" />
  139. </ItemGroup>
  140. <ItemGroup>
  141. <Compile Include="Configuration\PlayerConfiguration.cs" />
  142. <Compile Include="Configuration\UIApplicationConfiguration.cs" />
  143. <Compile Include="Configuration\UIApplicationPaths.cs" />
  144. <Compile Include="Controller\BaseTheme.cs" />
  145. <Compile Include="Controller\PluginUpdater.cs" />
  146. <Compile Include="Controls\NavigationBar.xaml.cs">
  147. <DependentUpon>NavigationBar.xaml</DependentUpon>
  148. </Compile>
  149. <Compile Include="Controls\ModalWindow.xaml.cs">
  150. <DependentUpon>ModalWindow.xaml</DependentUpon>
  151. </Compile>
  152. <Compile Include="Controls\NotificationMessage.xaml.cs">
  153. <DependentUpon>NotificationMessage.xaml</DependentUpon>
  154. </Compile>
  155. <Compile Include="HiddenWindow.xaml.cs">
  156. <DependentUpon>HiddenWindow.xaml</DependentUpon>
  157. </Compile>
  158. <Compile Include="ImageViewerWindow.xaml.cs">
  159. <DependentUpon>ImageViewerWindow.xaml</DependentUpon>
  160. </Compile>
  161. <Compile Include="Pages\BaseInternalPlayerPage.cs" />
  162. <Compile Include="Playback\BaseMediaPlayer.cs" />
  163. <Compile Include="Playback\ExternalPlayer\BaseExternalPlayer.cs" />
  164. <Compile Include="Playback\ExternalPlayer\GenericExternalPlayer.cs" />
  165. <Compile Include="Playback\InternalPlayer\BaseInternalMediaPlayer.cs" />
  166. <Compile Include="Playback\NVlc\InternalMediaPlayerNVlc.cs" />
  167. <Compile Include="Playback\PlaybackEventArgs.cs" />
  168. <Compile Include="Playback\PlaybackManager.cs" />
  169. <Compile Include="Playback\PlayOptions.cs" />
  170. <Compile Include="Playback\PlayState.cs" />
  171. <Compile Include="UserInput\KeyboardListener.cs" />
  172. <Compile Include="ViewModels\BaseItemPersonViewModel.cs" />
  173. <Compile Include="ViewModels\BaseViewModel.cs" />
  174. <Compile Include="Controls\WindowCommands.xaml.cs">
  175. <DependentUpon>WindowCommands.xaml</DependentUpon>
  176. </Compile>
  177. <Compile Include="Converters\BaseItemImageVisibilityConverter.cs" />
  178. <Compile Include="Converters\CurrentUserVisibilityConverter.cs" />
  179. <Compile Include="Converters\DateTimeToStringConverter.cs" />
  180. <Compile Include="Converters\LastSeenTextConverter.cs" />
  181. <Compile Include="Converters\MetroTileBackgroundConverter.cs" />
  182. <Compile Include="Converters\WatchedVisibilityConverter.cs" />
  183. <Compile Include="Converters\WeatherTemperatureConverter.cs" />
  184. <Compile Include="Converters\WeatherVisibilityConverter.cs" />
  185. <Compile Include="Controller\UIKernel.cs" />
  186. <Compile Include="Pages\BaseDetailPage.cs" />
  187. <Compile Include="Pages\BaseFolderPage.cs" />
  188. <Compile Include="Pages\BaseHomePage.cs" />
  189. <Compile Include="Pages\BaseListPage.cs" />
  190. <Compile Include="Pages\BaseLoginPage.cs" />
  191. <Compile Include="ViewModels\ChapterInfoDtoViewModel.cs" />
  192. <Compile Include="ViewModels\DtoBaseItemViewModel.cs" />
  193. <Compile Include="ViewModels\ItemCollectionViewModel.cs" />
  194. <Compile Include="ViewModels\SpecialFeatureViewModel.cs" />
  195. <Page Include="App.xaml">
  196. <Generator>MSBuild:Compile</Generator>
  197. <SubType>Designer</SubType>
  198. </Page>
  199. <Page Include="Controls\ModalWindow.xaml">
  200. <SubType>Designer</SubType>
  201. <Generator>MSBuild:Compile</Generator>
  202. </Page>
  203. <Page Include="Controls\NavigationBar.xaml">
  204. <SubType>Designer</SubType>
  205. <Generator>MSBuild:Compile</Generator>
  206. </Page>
  207. <Page Include="Controls\NotificationMessage.xaml">
  208. <SubType>Designer</SubType>
  209. <Generator>MSBuild:Compile</Generator>
  210. </Page>
  211. <Page Include="Controls\WindowCommands.xaml">
  212. <Generator>MSBuild:Compile</Generator>
  213. <SubType>Designer</SubType>
  214. </Page>
  215. <Page Include="HiddenWindow.xaml">
  216. <SubType>Designer</SubType>
  217. <Generator>MSBuild:Compile</Generator>
  218. </Page>
  219. <Page Include="ImageViewerWindow.xaml">
  220. <SubType>Designer</SubType>
  221. <Generator>MSBuild:Compile</Generator>
  222. </Page>
  223. <Page Include="MainWindow.xaml">
  224. <Generator>MSBuild:Compile</Generator>
  225. <SubType>Designer</SubType>
  226. </Page>
  227. <Compile Include="App.xaml.cs">
  228. <DependentUpon>App.xaml</DependentUpon>
  229. <SubType>Code</SubType>
  230. </Compile>
  231. <Compile Include="Pages\BasePage.cs" />
  232. <Compile Include="Converters\UserImageConverter.cs" />
  233. <Compile Include="MainWindow.xaml.cs">
  234. <DependentUpon>MainWindow.xaml</DependentUpon>
  235. <SubType>Code</SubType>
  236. </Compile>
  237. <Page Include="Pages\SettingsPage.xaml">
  238. <SubType>Designer</SubType>
  239. <Generator>MSBuild:Compile</Generator>
  240. </Page>
  241. <Page Include="Resources\AppResources.xaml">
  242. <SubType>Designer</SubType>
  243. <Generator>MSBuild:Compile</Generator>
  244. </Page>
  245. <Page Include="Resources\MainWindowResources.xaml">
  246. <SubType>Designer</SubType>
  247. <Generator>MSBuild:Compile</Generator>
  248. </Page>
  249. <Page Include="Resources\ModalMessage.xaml">
  250. <SubType>Designer</SubType>
  251. <Generator>MSBuild:Compile</Generator>
  252. </Page>
  253. <Page Include="Resources\NavBarResources.xaml">
  254. <SubType>Designer</SubType>
  255. <Generator>MSBuild:Compile</Generator>
  256. </Page>
  257. <Page Include="Resources\NotificationMessage.xaml">
  258. <SubType>Designer</SubType>
  259. <Generator>MSBuild:Compile</Generator>
  260. </Page>
  261. </ItemGroup>
  262. <ItemGroup>
  263. <Compile Include="Pages\BaseWeatherPage.cs" />
  264. <Compile Include="Pages\SettingsPage.xaml.cs">
  265. <DependentUpon>SettingsPage.xaml</DependentUpon>
  266. </Compile>
  267. <Compile Include="Properties\AssemblyInfo.cs">
  268. <SubType>Code</SubType>
  269. </Compile>
  270. <Compile Include="Properties\Resources.Designer.cs">
  271. <AutoGen>True</AutoGen>
  272. <DesignTime>True</DesignTime>
  273. <DependentUpon>Resources.resx</DependentUpon>
  274. </Compile>
  275. <Compile Include="Properties\Settings.Designer.cs">
  276. <AutoGen>True</AutoGen>
  277. <DependentUpon>Settings.settings</DependentUpon>
  278. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  279. </Compile>
  280. <EmbeddedResource Include="Properties\Resources.resx">
  281. <Generator>ResXFileCodeGenerator</Generator>
  282. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  283. </EmbeddedResource>
  284. <None Include="MediaBrowser.UI_TemporaryKey.pfx" />
  285. <None Include="packages.config" />
  286. <None Include="Properties\Settings.settings">
  287. <Generator>SettingsSingleFileGenerator</Generator>
  288. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  289. </None>
  290. <AppDesigner Include="Properties\" />
  291. </ItemGroup>
  292. <ItemGroup>
  293. <None Include="App.config">
  294. <SubType>Designer</SubType>
  295. </None>
  296. </ItemGroup>
  297. <ItemGroup>
  298. <ProjectReference Include="..\MediaBrowser.ApiInteraction\MediaBrowser.ApiInteraction.csproj">
  299. <Project>{921c0f64-fda7-4e9f-9e73-0cb0eedb2422}</Project>
  300. <Name>MediaBrowser.ApiInteraction</Name>
  301. </ProjectReference>
  302. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  303. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  304. <Name>MediaBrowser.Common</Name>
  305. </ProjectReference>
  306. <ProjectReference Include="..\MediaBrowser.IsoMounter\MediaBrowser.IsoMounter.csproj">
  307. <Project>{5356ae30-6a6e-4a64-81e3-f76c50595e64}</Project>
  308. <Name>MediaBrowser.IsoMounter</Name>
  309. </ProjectReference>
  310. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  311. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  312. <Name>MediaBrowser.Model</Name>
  313. </ProjectReference>
  314. <ProjectReference Include="..\MediaBrowser.UI.Controls\MediaBrowser.UI.Controls.csproj">
  315. <Project>{1adfe460-fd95-46fa-8871-cccb4b62e2e8}</Project>
  316. <Name>MediaBrowser.UI.Controls</Name>
  317. </ProjectReference>
  318. <ProjectReference Include="..\MediaBrowser.UI.Uninstall\MediaBrowser.UI.Uninstall.csproj">
  319. <Project>{e4be0659-4084-407b-b8a8-67802331cc9e}</Project>
  320. <Name>MediaBrowser.UI.Uninstall</Name>
  321. </ProjectReference>
  322. </ItemGroup>
  323. <ItemGroup>
  324. <Resource Include="Resources\Images\NavBar\BackButton.png" />
  325. </ItemGroup>
  326. <ItemGroup>
  327. <Resource Include="Resources\Images\NavBar\MuteButton.png" />
  328. </ItemGroup>
  329. <ItemGroup>
  330. <Resource Include="Resources\Images\Icon.ico" />
  331. </ItemGroup>
  332. <ItemGroup>
  333. <Resource Include="Resources\Images\mblogoblack.png" />
  334. <Resource Include="Resources\Images\mblogowhite.png" />
  335. </ItemGroup>
  336. <ItemGroup>
  337. <Resource Include="Resources\Images\NavBar\VolumeDownButton.png" />
  338. </ItemGroup>
  339. <ItemGroup>
  340. <Resource Include="Resources\Images\NavBar\VolumeUpButton.png" />
  341. </ItemGroup>
  342. <ItemGroup>
  343. <Resource Include="Resources\Images\MessageBox\Error.png" />
  344. </ItemGroup>
  345. <ItemGroup>
  346. <Resource Include="Resources\Images\MessageBox\Question.png" />
  347. </ItemGroup>
  348. <ItemGroup>
  349. <Resource Include="Resources\Images\MessageBox\Information.png" />
  350. </ItemGroup>
  351. <ItemGroup>
  352. <Resource Include="Resources\Images\MessageBox\Asterisk.png" />
  353. </ItemGroup>
  354. <ItemGroup>
  355. <Resource Include="Resources\Images\MessageBox\Warning.png" />
  356. </ItemGroup>
  357. <ItemGroup>
  358. <Resource Include="Resources\Images\MessageBox\Hand.png" />
  359. <Resource Include="Resources\Images\MessageBox\Stop.png" />
  360. </ItemGroup>
  361. <ItemGroup>
  362. <Resource Include="Resources\Images\MessageBox\Exclamation.png" />
  363. </ItemGroup>
  364. <ItemGroup>
  365. <Resource Include="Resources\Images\mblogoblackfull.png" />
  366. <Resource Include="Resources\Images\mblogowhitefull.png" />
  367. </ItemGroup>
  368. <ItemGroup>
  369. <BootstrapperPackage Include=".NETFramework,Version=v4.5">
  370. <Visible>False</Visible>
  371. <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
  372. <Install>true</Install>
  373. </BootstrapperPackage>
  374. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  375. <Visible>False</Visible>
  376. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  377. <Install>false</Install>
  378. </BootstrapperPackage>
  379. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  380. <Visible>False</Visible>
  381. <ProductName>.NET Framework 3.5 SP1</ProductName>
  382. <Install>false</Install>
  383. </BootstrapperPackage>
  384. <BootstrapperPackage Include="Microsoft.Visual.C++.10.0.x86">
  385. <Visible>False</Visible>
  386. <ProductName>Visual C++ 2010 Runtime Libraries %28x86%29</ProductName>
  387. <Install>true</Install>
  388. </BootstrapperPackage>
  389. </ItemGroup>
  390. <ItemGroup>
  391. <Folder Include="Playback\DirectShow\" />
  392. </ItemGroup>
  393. <ItemGroup>
  394. <Content Include="libvlc.dll">
  395. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  396. </Content>
  397. <Content Include="libvlccore.dll">
  398. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  399. </Content>
  400. <Content Include="MediaBrowser.Plugins.DefaultTheme.dll">
  401. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  402. </Content>
  403. <Content Include="plugins\3dnow\libmemcpy3dn_plugin.dll">
  404. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  405. </Content>
  406. <Content Include="plugins\access\libaccess_attachment_plugin.dll">
  407. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  408. </Content>
  409. <Content Include="plugins\access\libaccess_bd_plugin.dll">
  410. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  411. </Content>
  412. <Content Include="plugins\access\libaccess_ftp_plugin.dll">
  413. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  414. </Content>
  415. <Content Include="plugins\access\libaccess_http_plugin.dll">
  416. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  417. </Content>
  418. <Content Include="plugins\access\libaccess_imem_plugin.dll">
  419. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  420. </Content>
  421. <Content Include="plugins\access\libaccess_mms_plugin.dll">
  422. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  423. </Content>
  424. <Content Include="plugins\access\libaccess_rar_plugin.dll">
  425. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  426. </Content>
  427. <Content Include="plugins\access\libaccess_realrtsp_plugin.dll">
  428. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  429. </Content>
  430. <Content Include="plugins\access\libaccess_smb_plugin.dll">
  431. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  432. </Content>
  433. <Content Include="plugins\access\libaccess_tcp_plugin.dll">
  434. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  435. </Content>
  436. <Content Include="plugins\access\libaccess_udp_plugin.dll">
  437. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  438. </Content>
  439. <Content Include="plugins\access\libaccess_vdr_plugin.dll">
  440. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  441. </Content>
  442. <Content Include="plugins\access\libcdda_plugin.dll">
  443. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  444. </Content>
  445. <Content Include="plugins\access\libdshow_plugin.dll">
  446. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  447. </Content>
  448. <Content Include="plugins\access\libdtv_plugin.dll">
  449. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  450. </Content>
  451. <Content Include="plugins\access\libdvdnav_plugin.dll">
  452. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  453. </Content>
  454. <Content Include="plugins\access\libdvdread_plugin.dll">
  455. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  456. </Content>
  457. <Content Include="plugins\access\libfilesystem_plugin.dll">
  458. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  459. </Content>
  460. <Content Include="plugins\access\libidummy_plugin.dll">
  461. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  462. </Content>
  463. <Content Include="plugins\access\liblibbluray_plugin.dll">
  464. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  465. </Content>
  466. <Content Include="plugins\access\librtp_plugin.dll">
  467. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  468. </Content>
  469. <Content Include="plugins\access\libscreen_plugin.dll">
  470. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  471. </Content>
  472. <Content Include="plugins\access\libsdp_plugin.dll">
  473. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  474. </Content>
  475. <Content Include="plugins\access\libstream_filter_rar_plugin.dll">
  476. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  477. </Content>
  478. <Content Include="plugins\access\libvcd_plugin.dll">
  479. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  480. </Content>
  481. <Content Include="plugins\access\libzip_plugin.dll">
  482. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  483. </Content>
  484. <Content Include="plugins\access_output\libaccess_output_dummy_plugin.dll">
  485. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  486. </Content>
  487. <Content Include="plugins\access_output\libaccess_output_file_plugin.dll">
  488. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  489. </Content>
  490. <Content Include="plugins\access_output\libaccess_output_http_plugin.dll">
  491. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  492. </Content>
  493. <Content Include="plugins\access_output\libaccess_output_livehttp_plugin.dll">
  494. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  495. </Content>
  496. <Content Include="plugins\access_output\libaccess_output_shout_plugin.dll">
  497. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  498. </Content>
  499. <Content Include="plugins\access_output\libaccess_output_udp_plugin.dll">
  500. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  501. </Content>
  502. <Content Include="plugins\audio_filter\liba52tofloat32_plugin.dll">
  503. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  504. </Content>
  505. <Content Include="plugins\audio_filter\liba52tospdif_plugin.dll">
  506. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  507. </Content>
  508. <Content Include="plugins\audio_filter\libaudiobargraph_a_plugin.dll">
  509. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  510. </Content>
  511. <Content Include="plugins\audio_filter\libaudio_format_plugin.dll">
  512. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  513. </Content>
  514. <Content Include="plugins\audio_filter\libchorus_flanger_plugin.dll">
  515. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  516. </Content>
  517. <Content Include="plugins\audio_filter\libcompressor_plugin.dll">
  518. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  519. </Content>
  520. <Content Include="plugins\audio_filter\libconverter_fixed_plugin.dll">
  521. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  522. </Content>
  523. <Content Include="plugins\audio_filter\libdolby_surround_decoder_plugin.dll">
  524. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  525. </Content>
  526. <Content Include="plugins\audio_filter\libdtstofloat32_plugin.dll">
  527. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  528. </Content>
  529. <Content Include="plugins\audio_filter\libdtstospdif_plugin.dll">
  530. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  531. </Content>
  532. <Content Include="plugins\audio_filter\libequalizer_plugin.dll">
  533. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  534. </Content>
  535. <Content Include="plugins\audio_filter\libheadphone_channel_mixer_plugin.dll">
  536. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  537. </Content>
  538. <Content Include="plugins\audio_filter\libkaraoke_plugin.dll">
  539. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  540. </Content>
  541. <Content Include="plugins\audio_filter\libmono_plugin.dll">
  542. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  543. </Content>
  544. <Content Include="plugins\audio_filter\libmpgatofixed32_plugin.dll">
  545. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  546. </Content>
  547. <Content Include="plugins\audio_filter\libnormvol_plugin.dll">
  548. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  549. </Content>
  550. <Content Include="plugins\audio_filter\libparam_eq_plugin.dll">
  551. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  552. </Content>
  553. <Content Include="plugins\audio_filter\libsamplerate_plugin.dll">
  554. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  555. </Content>
  556. <Content Include="plugins\audio_filter\libscaletempo_plugin.dll">
  557. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  558. </Content>
  559. <Content Include="plugins\audio_filter\libsimple_channel_mixer_plugin.dll">
  560. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  561. </Content>
  562. <Content Include="plugins\audio_filter\libspatializer_plugin.dll">
  563. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  564. </Content>
  565. <Content Include="plugins\audio_filter\libspeex_resampler_plugin.dll">
  566. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  567. </Content>
  568. <Content Include="plugins\audio_filter\libtrivial_channel_mixer_plugin.dll">
  569. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  570. </Content>
  571. <Content Include="plugins\audio_filter\libugly_resampler_plugin.dll">
  572. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  573. </Content>
  574. <Content Include="plugins\audio_mixer\libfixed32_mixer_plugin.dll">
  575. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  576. </Content>
  577. <Content Include="plugins\audio_mixer\libfloat32_mixer_plugin.dll">
  578. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  579. </Content>
  580. <Content Include="plugins\audio_output\libadummy_plugin.dll">
  581. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  582. </Content>
  583. <Content Include="plugins\audio_output\libamem_plugin.dll">
  584. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  585. </Content>
  586. <Content Include="plugins\audio_output\libaout_directx_plugin.dll">
  587. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  588. </Content>
  589. <Content Include="plugins\audio_output\libaout_file_plugin.dll">
  590. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  591. </Content>
  592. <Content Include="plugins\audio_output\libwaveout_plugin.dll">
  593. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  594. </Content>
  595. <Content Include="plugins\codec\liba52_plugin.dll">
  596. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  597. </Content>
  598. <Content Include="plugins\codec\libadpcm_plugin.dll">
  599. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  600. </Content>
  601. <Content Include="plugins\codec\libaes3_plugin.dll">
  602. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  603. </Content>
  604. <Content Include="plugins\codec\libaraw_plugin.dll">
  605. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  606. </Content>
  607. <Content Include="plugins\codec\libavcodec_plugin.dll">
  608. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  609. </Content>
  610. <Content Include="plugins\codec\libcc_plugin.dll">
  611. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  612. </Content>
  613. <Content Include="plugins\codec\libcdg_plugin.dll">
  614. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  615. </Content>
  616. <Content Include="plugins\codec\libcrystalhd_plugin.dll">
  617. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  618. </Content>
  619. <Content Include="plugins\codec\libcvdsub_plugin.dll">
  620. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  621. </Content>
  622. <Content Include="plugins\codec\libddummy_plugin.dll">
  623. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  624. </Content>
  625. <Content Include="plugins\codec\libdmo_plugin.dll">
  626. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  627. </Content>
  628. <Content Include="plugins\codec\libdts_plugin.dll">
  629. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  630. </Content>
  631. <Content Include="plugins\codec\libdvbsub_plugin.dll">
  632. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  633. </Content>
  634. <Content Include="plugins\codec\libedummy_plugin.dll">
  635. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  636. </Content>
  637. <Content Include="plugins\codec\libfaad_plugin.dll">
  638. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  639. </Content>
  640. <Content Include="plugins\codec\libflac_plugin.dll">
  641. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  642. </Content>
  643. <Content Include="plugins\codec\libfluidsynth_plugin.dll">
  644. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  645. </Content>
  646. <Content Include="plugins\codec\libkate_plugin.dll">
  647. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  648. </Content>
  649. <Content Include="plugins\codec\liblibass_plugin.dll">
  650. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  651. </Content>
  652. <Content Include="plugins\codec\liblibmpeg2_plugin.dll">
  653. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  654. </Content>
  655. <Content Include="plugins\codec\liblpcm_plugin.dll">
  656. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  657. </Content>
  658. <Content Include="plugins\codec\libmpeg_audio_plugin.dll">
  659. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  660. </Content>
  661. <Content Include="plugins\codec\libopus_plugin.dll">
  662. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  663. </Content>
  664. <Content Include="plugins\codec\libpng_plugin.dll">
  665. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  666. </Content>
  667. <Content Include="plugins\codec\libquicktime_plugin.dll">
  668. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  669. </Content>
  670. <Content Include="plugins\codec\librawvideo_plugin.dll">
  671. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  672. </Content>
  673. <Content Include="plugins\codec\libschroedinger_plugin.dll">
  674. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  675. </Content>
  676. <Content Include="plugins\codec\libspeex_plugin.dll">
  677. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  678. </Content>
  679. <Content Include="plugins\codec\libspudec_plugin.dll">
  680. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  681. </Content>
  682. <Content Include="plugins\codec\libstl_plugin.dll">
  683. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  684. </Content>
  685. <Content Include="plugins\codec\libsubsdec_plugin.dll">
  686. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  687. </Content>
  688. <Content Include="plugins\codec\libsubsusf_plugin.dll">
  689. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  690. </Content>
  691. <Content Include="plugins\codec\libsvcdsub_plugin.dll">
  692. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  693. </Content>
  694. <Content Include="plugins\codec\libt140_plugin.dll">
  695. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  696. </Content>
  697. <Content Include="plugins\codec\libtheora_plugin.dll">
  698. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  699. </Content>
  700. <Content Include="plugins\codec\libtwolame_plugin.dll">
  701. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  702. </Content>
  703. <Content Include="plugins\codec\libvorbis_plugin.dll">
  704. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  705. </Content>
  706. <Content Include="plugins\codec\libx264_plugin.dll">
  707. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  708. </Content>
  709. <Content Include="plugins\codec\libzvbi_plugin.dll">
  710. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  711. </Content>
  712. <Content Include="plugins\control\libdummy_plugin.dll">
  713. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  714. </Content>
  715. <Content Include="plugins\control\libgestures_plugin.dll">
  716. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  717. </Content>
  718. <Content Include="plugins\control\libglobalhotkeys_plugin.dll">
  719. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  720. </Content>
  721. <Content Include="plugins\control\libhotkeys_plugin.dll">
  722. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  723. </Content>
  724. <Content Include="plugins\control\libnetsync_plugin.dll">
  725. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  726. </Content>
  727. <Content Include="plugins\control\libntservice_plugin.dll">
  728. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  729. </Content>
  730. <Content Include="plugins\control\liboldrc_plugin.dll">
  731. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  732. </Content>
  733. <Content Include="plugins\demux\libaiff_plugin.dll">
  734. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  735. </Content>
  736. <Content Include="plugins\demux\libasf_plugin.dll">
  737. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  738. </Content>
  739. <Content Include="plugins\demux\libau_plugin.dll">
  740. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  741. </Content>
  742. <Content Include="plugins\demux\libavi_plugin.dll">
  743. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  744. </Content>
  745. <Content Include="plugins\demux\libdemuxdump_plugin.dll">
  746. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  747. </Content>
  748. <Content Include="plugins\demux\libdemux_cdg_plugin.dll">
  749. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  750. </Content>
  751. <Content Include="plugins\demux\libdemux_stl_plugin.dll">
  752. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  753. </Content>
  754. <Content Include="plugins\demux\libdirac_plugin.dll">
  755. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  756. </Content>
  757. <Content Include="plugins\demux\libes_plugin.dll">
  758. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  759. </Content>
  760. <Content Include="plugins\demux\libflacsys_plugin.dll">
  761. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  762. </Content>
  763. <Content Include="plugins\demux\libgme_plugin.dll">
  764. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  765. </Content>
  766. <Content Include="plugins\demux\libh264_plugin.dll">
  767. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  768. </Content>
  769. <Content Include="plugins\demux\libimage_plugin.dll">
  770. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  771. </Content>
  772. <Content Include="plugins\demux\liblive555_plugin.dll">
  773. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  774. </Content>
  775. <Content Include="plugins\demux\libmjpeg_plugin.dll">
  776. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  777. </Content>
  778. <Content Include="plugins\demux\libmkv_plugin.dll">
  779. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  780. </Content>
  781. <Content Include="plugins\demux\libmod_plugin.dll">
  782. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  783. </Content>
  784. <Content Include="plugins\demux\libmp4_plugin.dll">
  785. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  786. </Content>
  787. <Content Include="plugins\demux\libmpc_plugin.dll">
  788. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  789. </Content>
  790. <Content Include="plugins\demux\libmpgv_plugin.dll">
  791. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  792. </Content>
  793. <Content Include="plugins\demux\libnsc_plugin.dll">
  794. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  795. </Content>
  796. <Content Include="plugins\demux\libnsv_plugin.dll">
  797. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  798. </Content>
  799. <Content Include="plugins\demux\libnuv_plugin.dll">
  800. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  801. </Content>
  802. <Content Include="plugins\demux\libogg_plugin.dll">
  803. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  804. </Content>
  805. <Content Include="plugins\demux\libplaylist_plugin.dll">
  806. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  807. </Content>
  808. <Content Include="plugins\demux\libps_plugin.dll">
  809. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  810. </Content>
  811. <Content Include="plugins\demux\libpva_plugin.dll">
  812. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  813. </Content>
  814. <Content Include="plugins\demux\librawaud_plugin.dll">
  815. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  816. </Content>
  817. <Content Include="plugins\demux\librawdv_plugin.dll">
  818. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  819. </Content>
  820. <Content Include="plugins\demux\librawvid_plugin.dll">
  821. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  822. </Content>
  823. <Content Include="plugins\demux\libreal_plugin.dll">
  824. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  825. </Content>
  826. <Content Include="plugins\demux\libsid_plugin.dll">
  827. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  828. </Content>
  829. <Content Include="plugins\demux\libsmf_plugin.dll">
  830. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  831. </Content>
  832. <Content Include="plugins\demux\libsubtitle_plugin.dll">
  833. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  834. </Content>
  835. <Content Include="plugins\demux\libts_plugin.dll">
  836. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  837. </Content>
  838. <Content Include="plugins\demux\libtta_plugin.dll">
  839. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  840. </Content>
  841. <Content Include="plugins\demux\libty_plugin.dll">
  842. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  843. </Content>
  844. <Content Include="plugins\demux\libvc1_plugin.dll">
  845. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  846. </Content>
  847. <Content Include="plugins\demux\libvobsub_plugin.dll">
  848. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  849. </Content>
  850. <Content Include="plugins\demux\libvoc_plugin.dll">
  851. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  852. </Content>
  853. <Content Include="plugins\demux\libwav_plugin.dll">
  854. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  855. </Content>
  856. <Content Include="plugins\demux\libxa_plugin.dll">
  857. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  858. </Content>
  859. <Content Include="plugins\gui\libqt4_plugin.dll">
  860. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  861. </Content>
  862. <Content Include="plugins\gui\libskins2_plugin.dll">
  863. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  864. </Content>
  865. <Content Include="plugins\lua\liblua_plugin.dll">
  866. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  867. </Content>
  868. <Content Include="plugins\meta_engine\libfolder_plugin.dll">
  869. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  870. </Content>
  871. <Content Include="plugins\meta_engine\libtaglib_plugin.dll">
  872. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  873. </Content>
  874. <Content Include="plugins\misc\libaudioscrobbler_plugin.dll">
  875. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  876. </Content>
  877. <Content Include="plugins\misc\libexport_plugin.dll">
  878. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  879. </Content>
  880. <Content Include="plugins\misc\libgnutls_plugin.dll">
  881. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  882. </Content>
  883. <Content Include="plugins\misc\liblogger_plugin.dll">
  884. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  885. </Content>
  886. <Content Include="plugins\misc\libmemcpy_plugin.dll">
  887. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  888. </Content>
  889. <Content Include="plugins\misc\libosd_parser_plugin.dll">
  890. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  891. </Content>
  892. <Content Include="plugins\misc\libstats_plugin.dll">
  893. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  894. </Content>
  895. <Content Include="plugins\misc\libvod_rtsp_plugin.dll">
  896. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  897. </Content>
  898. <Content Include="plugins\misc\libxml_plugin.dll">
  899. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  900. </Content>
  901. <Content Include="plugins\mmxext\libmemcpymmxext_plugin.dll">
  902. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  903. </Content>
  904. <Content Include="plugins\mmx\libi420_rgb_mmx_plugin.dll">
  905. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  906. </Content>
  907. <Content Include="plugins\mmx\libi420_yuy2_mmx_plugin.dll">
  908. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  909. </Content>
  910. <Content Include="plugins\mmx\libi422_yuy2_mmx_plugin.dll">
  911. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  912. </Content>
  913. <Content Include="plugins\mmx\libmemcpymmx_plugin.dll">
  914. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  915. </Content>
  916. <Content Include="plugins\mux\libmux_asf_plugin.dll">
  917. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  918. </Content>
  919. <Content Include="plugins\mux\libmux_avi_plugin.dll">
  920. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  921. </Content>
  922. <Content Include="plugins\mux\libmux_dummy_plugin.dll">
  923. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  924. </Content>
  925. <Content Include="plugins\mux\libmux_mp4_plugin.dll">
  926. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  927. </Content>
  928. <Content Include="plugins\mux\libmux_mpjpeg_plugin.dll">
  929. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  930. </Content>
  931. <Content Include="plugins\mux\libmux_ogg_plugin.dll">
  932. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  933. </Content>
  934. <Content Include="plugins\mux\libmux_ps_plugin.dll">
  935. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  936. </Content>
  937. <Content Include="plugins\mux\libmux_ts_plugin.dll">
  938. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  939. </Content>
  940. <Content Include="plugins\mux\libmux_wav_plugin.dll">
  941. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  942. </Content>
  943. <Content Include="plugins\notify\libmsn_plugin.dll">
  944. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  945. </Content>
  946. <Content Include="plugins\packetizer\libpacketizer_copy_plugin.dll">
  947. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  948. </Content>
  949. <Content Include="plugins\packetizer\libpacketizer_dirac_plugin.dll">
  950. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  951. </Content>
  952. <Content Include="plugins\packetizer\libpacketizer_flac_plugin.dll">
  953. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  954. </Content>
  955. <Content Include="plugins\packetizer\libpacketizer_h264_plugin.dll">
  956. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  957. </Content>
  958. <Content Include="plugins\packetizer\libpacketizer_mlp_plugin.dll">
  959. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  960. </Content>
  961. <Content Include="plugins\packetizer\libpacketizer_mpeg4audio_plugin.dll">
  962. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  963. </Content>
  964. <Content Include="plugins\packetizer\libpacketizer_mpeg4video_plugin.dll">
  965. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  966. </Content>
  967. <Content Include="plugins\packetizer\libpacketizer_mpegvideo_plugin.dll">
  968. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  969. </Content>
  970. <Content Include="plugins\packetizer\libpacketizer_vc1_plugin.dll">
  971. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  972. </Content>
  973. <Content Include="plugins\services_discovery\libmediadirs_plugin.dll">
  974. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  975. </Content>
  976. <Content Include="plugins\services_discovery\libpodcast_plugin.dll">
  977. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  978. </Content>
  979. <Content Include="plugins\services_discovery\libsap_plugin.dll">
  980. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  981. </Content>
  982. <Content Include="plugins\services_discovery\libupnp_plugin.dll">
  983. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  984. </Content>
  985. <Content Include="plugins\services_discovery\libwindrive_plugin.dll">
  986. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  987. </Content>
  988. <Content Include="plugins\sse2\libi420_rgb_sse2_plugin.dll">
  989. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  990. </Content>
  991. <Content Include="plugins\sse2\libi420_yuy2_sse2_plugin.dll">
  992. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  993. </Content>
  994. <Content Include="plugins\sse2\libi422_yuy2_sse2_plugin.dll">
  995. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  996. </Content>
  997. <Content Include="plugins\stream_filter\libstream_filter_dash_plugin.dll">
  998. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  999. </Content>
  1000. <Content Include="plugins\stream_filter\libstream_filter_httplive_plugin.dll">
  1001. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1002. </Content>
  1003. <Content Include="plugins\stream_filter\libstream_filter_record_plugin.dll">
  1004. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1005. </Content>
  1006. <Content Include="plugins\stream_out\libstream_out_autodel_plugin.dll">
  1007. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1008. </Content>
  1009. <Content Include="plugins\stream_out\libstream_out_bridge_plugin.dll">
  1010. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1011. </Content>
  1012. <Content Include="plugins\stream_out\libstream_out_delay_plugin.dll">
  1013. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1014. </Content>
  1015. <Content Include="plugins\stream_out\libstream_out_description_plugin.dll">
  1016. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1017. </Content>
  1018. <Content Include="plugins\stream_out\libstream_out_display_plugin.dll">
  1019. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1020. </Content>
  1021. <Content Include="plugins\stream_out\libstream_out_dummy_plugin.dll">
  1022. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1023. </Content>
  1024. <Content Include="plugins\stream_out\libstream_out_duplicate_plugin.dll">
  1025. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1026. </Content>
  1027. <Content Include="plugins\stream_out\libstream_out_es_plugin.dll">
  1028. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1029. </Content>
  1030. <Content Include="plugins\stream_out\libstream_out_gather_plugin.dll">
  1031. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1032. </Content>
  1033. <Content Include="plugins\stream_out\libstream_out_langfromtelx_plugin.dll">
  1034. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1035. </Content>
  1036. <Content Include="plugins\stream_out\libstream_out_mosaic_bridge_plugin.dll">
  1037. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1038. </Content>
  1039. <Content Include="plugins\stream_out\libstream_out_raop_plugin.dll">
  1040. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1041. </Content>
  1042. <Content Include="plugins\stream_out\libstream_out_record_plugin.dll">
  1043. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1044. </Content>
  1045. <Content Include="plugins\stream_out\libstream_out_rtp_plugin.dll">
  1046. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1047. </Content>
  1048. <Content Include="plugins\stream_out\libstream_out_select_plugin.dll">
  1049. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1050. </Content>
  1051. <Content Include="plugins\stream_out\libstream_out_setid_plugin.dll">
  1052. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1053. </Content>
  1054. <Content Include="plugins\stream_out\libstream_out_smem_plugin.dll">
  1055. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1056. </Content>
  1057. <Content Include="plugins\stream_out\libstream_out_standard_plugin.dll">
  1058. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1059. </Content>
  1060. <Content Include="plugins\stream_out\libstream_out_transcode_plugin.dll">
  1061. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1062. </Content>
  1063. <Content Include="plugins\text_renderer\libfreetype_plugin.dll">
  1064. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1065. </Content>
  1066. <Content Include="plugins\text_renderer\libtdummy_plugin.dll">
  1067. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1068. </Content>
  1069. <Content Include="plugins\video_chroma\libgrey_yuv_plugin.dll">
  1070. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1071. </Content>
  1072. <Content Include="plugins\video_chroma\libi420_rgb_plugin.dll">
  1073. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1074. </Content>
  1075. <Content Include="plugins\video_chroma\libi420_yuy2_plugin.dll">
  1076. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1077. </Content>
  1078. <Content Include="plugins\video_chroma\libi422_i420_plugin.dll">
  1079. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1080. </Content>
  1081. <Content Include="plugins\video_chroma\libi422_yuy2_plugin.dll">
  1082. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1083. </Content>
  1084. <Content Include="plugins\video_chroma\librv32_plugin.dll">
  1085. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1086. </Content>
  1087. <Content Include="plugins\video_chroma\libyuy2_i420_plugin.dll">
  1088. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1089. </Content>
  1090. <Content Include="plugins\video_chroma\libyuy2_i422_plugin.dll">
  1091. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1092. </Content>
  1093. <Content Include="plugins\video_filter\libadjust_plugin.dll">
  1094. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1095. </Content>
  1096. <Content Include="plugins\video_filter\libalphamask_plugin.dll">
  1097. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1098. </Content>
  1099. <Content Include="plugins\video_filter\libantiflicker_plugin.dll">
  1100. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1101. </Content>
  1102. <Content Include="plugins\video_filter\libatmo_plugin.dll">
  1103. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1104. </Content>
  1105. <Content Include="plugins\video_filter\libaudiobargraph_v_plugin.dll">
  1106. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1107. </Content>
  1108. <Content Include="plugins\video_filter\libball_plugin.dll">
  1109. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1110. </Content>
  1111. <Content Include="plugins\video_filter\libblendbench_plugin.dll">
  1112. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1113. </Content>
  1114. <Content Include="plugins\video_filter\libblend_plugin.dll">
  1115. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1116. </Content>
  1117. <Content Include="plugins\video_filter\libbluescreen_plugin.dll">
  1118. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1119. </Content>
  1120. <Content Include="plugins\video_filter\libcanvas_plugin.dll">
  1121. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1122. </Content>
  1123. <Content Include="plugins\video_filter\libchain_plugin.dll">
  1124. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1125. </Content>
  1126. <Content Include="plugins\video_filter\libclone_plugin.dll">
  1127. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1128. </Content>
  1129. <Content Include="plugins\video_filter\libcolorthres_plugin.dll">
  1130. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1131. </Content>
  1132. <Content Include="plugins\video_filter\libcroppadd_plugin.dll">
  1133. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1134. </Content>
  1135. <Content Include="plugins\video_filter\libdeinterlace_plugin.dll">
  1136. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1137. </Content>
  1138. <Content Include="plugins\video_filter\liberase_plugin.dll">
  1139. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1140. </Content>
  1141. <Content Include="plugins\video_filter\libextract_plugin.dll">
  1142. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1143. </Content>
  1144. <Content Include="plugins\video_filter\libgaussianblur_plugin.dll">
  1145. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1146. </Content>
  1147. <Content Include="plugins\video_filter\libgradfun_plugin.dll">
  1148. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1149. </Content>
  1150. <Content Include="plugins\video_filter\libgradient_plugin.dll">
  1151. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1152. </Content>
  1153. <Content Include="plugins\video_filter\libgrain_plugin.dll">
  1154. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1155. </Content>
  1156. <Content Include="plugins\video_filter\libhqdn3d_plugin.dll">
  1157. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1158. </Content>
  1159. <Content Include="plugins\video_filter\libinvert_plugin.dll">
  1160. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1161. </Content>
  1162. <Content Include="plugins\video_filter\liblogo_plugin.dll">
  1163. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1164. </Content>
  1165. <Content Include="plugins\video_filter\libmagnify_plugin.dll">
  1166. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1167. </Content>
  1168. <Content Include="plugins\video_filter\libmarq_plugin.dll">
  1169. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1170. </Content>
  1171. <Content Include="plugins\video_filter\libmirror_plugin.dll">
  1172. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1173. </Content>
  1174. <Content Include="plugins\video_filter\libmosaic_plugin.dll">
  1175. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1176. </Content>
  1177. <Content Include="plugins\video_filter\libmotionblur_plugin.dll">
  1178. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1179. </Content>
  1180. <Content Include="plugins\video_filter\libmotiondetect_plugin.dll">
  1181. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1182. </Content>
  1183. <Content Include="plugins\video_filter\libosdmenu_plugin.dll">
  1184. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1185. </Content>
  1186. <Content Include="plugins\video_filter\libpanoramix_plugin.dll">
  1187. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1188. </Content>
  1189. <Content Include="plugins\video_filter\libposterize_plugin.dll">
  1190. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1191. </Content>
  1192. <Content Include="plugins\video_filter\libpostproc_plugin.dll">
  1193. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1194. </Content>
  1195. <Content Include="plugins\video_filter\libpsychedelic_plugin.dll">
  1196. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1197. </Content>
  1198. <Content Include="plugins\video_filter\libpuzzle_plugin.dll">
  1199. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1200. </Content>
  1201. <Content Include="plugins\video_filter\libremoteosd_plugin.dll">
  1202. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1203. </Content>
  1204. <Content Include="plugins\video_filter\libripple_plugin.dll">
  1205. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1206. </Content>
  1207. <Content Include="plugins\video_filter\librotate_plugin.dll">
  1208. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1209. </Content>
  1210. <Content Include="plugins\video_filter\librss_plugin.dll">
  1211. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1212. </Content>
  1213. <Content Include="plugins\video_filter\libscale_plugin.dll">
  1214. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1215. </Content>
  1216. <Content Include="plugins\video_filter\libscene_plugin.dll">
  1217. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1218. </Content>
  1219. <Content Include="plugins\video_filter\libsepia_plugin.dll">
  1220. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1221. </Content>
  1222. <Content Include="plugins\video_filter\libsharpen_plugin.dll">
  1223. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1224. </Content>
  1225. <Content Include="plugins\video_filter\libsubsdelay_plugin.dll">
  1226. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1227. </Content>
  1228. <Content Include="plugins\video_filter\libswscale_plugin.dll">
  1229. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1230. </Content>
  1231. <Content Include="plugins\video_filter\libtransform_plugin.dll">
  1232. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1233. </Content>
  1234. <Content Include="plugins\video_filter\libwall_plugin.dll">
  1235. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1236. </Content>
  1237. <Content Include="plugins\video_filter\libwave_plugin.dll">
  1238. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1239. </Content>
  1240. <Content Include="plugins\video_filter\libyuvp_plugin.dll">
  1241. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1242. </Content>
  1243. <Content Include="plugins\video_output\libcaca_plugin.dll">
  1244. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1245. </Content>
  1246. <Content Include="plugins\video_output\libdirect2d_plugin.dll">
  1247. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1248. </Content>
  1249. <Content Include="plugins\video_output\libdirect3d_plugin.dll">
  1250. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1251. </Content>
  1252. <Content Include="plugins\video_output\libdirectx_plugin.dll">
  1253. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1254. </Content>
  1255. <Content Include="plugins\video_output\libdrawable_plugin.dll">
  1256. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1257. </Content>
  1258. <Content Include="plugins\video_output\libglwin32_plugin.dll">
  1259. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1260. </Content>
  1261. <Content Include="plugins\video_output\libvdummy_plugin.dll">
  1262. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1263. </Content>
  1264. <Content Include="plugins\video_output\libvmem_plugin.dll">
  1265. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1266. </Content>
  1267. <Content Include="plugins\video_output\libwingdi_plugin.dll">
  1268. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1269. </Content>
  1270. <Content Include="plugins\video_output\libyuv_plugin.dll">
  1271. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1272. </Content>
  1273. <Content Include="plugins\visualization\libgoom_plugin.dll">
  1274. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1275. </Content>
  1276. <Content Include="plugins\visualization\libprojectm_plugin.dll">
  1277. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1278. </Content>
  1279. <Content Include="plugins\visualization\libvisual_plugin.dll">
  1280. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1281. </Content>
  1282. <Resource Include="Resources\Images\NavBar\MediaBack.png" />
  1283. <Resource Include="Resources\Images\NavBar\MediaFastForward.png" />
  1284. <Resource Include="Resources\Images\NavBar\MediaForward.png" />
  1285. <Resource Include="Resources\Images\NavBar\MediaRewind.png" />
  1286. <Resource Include="Resources\Images\NavBar\PlayButton.png" />
  1287. <Resource Include="Resources\Images\NavBar\PauseButton.png" />
  1288. <Resource Include="Resources\Images\NavBar\StopButton.png" />
  1289. </ItemGroup>
  1290. <ItemGroup>
  1291. <PublishFile Include="MediaBrowser.UI.Uninstall">
  1292. <Visible>False</Visible>
  1293. <Group>
  1294. </Group>
  1295. <TargetPath>
  1296. </TargetPath>
  1297. <PublishState>Include</PublishState>
  1298. <IncludeHash>True</IncludeHash>
  1299. <FileType>Assembly</FileType>
  1300. </PublishFile>
  1301. </ItemGroup>
  1302. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  1303. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  1304. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  1305. Other similar extension points exist, see Microsoft.Common.targets.
  1306. <Target Name="BeforeBuild">
  1307. </Target>
  1308. <Target Name="AfterBuild">
  1309. </Target>
  1310. -->
  1311. </Project>