Emby.Server.Implementations.csproj 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  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>{E383961B-9356-4D5D-8233-9A1079D03055}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Emby.Server.Implementations</RootNamespace>
  11. <AssemblyName>Emby.Server.Implementations</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. <Compile Include="Activity\ActivityLogEntryPoint.cs" />
  36. <Compile Include="Activity\ActivityManager.cs" />
  37. <Compile Include="Activity\ActivityRepository.cs" />
  38. <Compile Include="AppBase\BaseApplicationPaths.cs" />
  39. <Compile Include="AppBase\BaseConfigurationManager.cs" />
  40. <Compile Include="AppBase\ConfigurationHelper.cs" />
  41. <Compile Include="Branding\BrandingConfigurationFactory.cs" />
  42. <Compile Include="Browser\BrowserLauncher.cs" />
  43. <Compile Include="Channels\ChannelConfigurations.cs" />
  44. <Compile Include="Channels\ChannelDynamicMediaSourceProvider.cs" />
  45. <Compile Include="Channels\ChannelImageProvider.cs" />
  46. <Compile Include="Channels\ChannelManager.cs" />
  47. <Compile Include="Channels\ChannelPostScanTask.cs" />
  48. <Compile Include="Channels\RefreshChannelsScheduledTask.cs" />
  49. <Compile Include="Collections\CollectionImageProvider.cs" />
  50. <Compile Include="Collections\CollectionManager.cs" />
  51. <Compile Include="Collections\CollectionsDynamicFolder.cs" />
  52. <Compile Include="Configuration\ServerConfigurationManager.cs" />
  53. <Compile Include="Data\ManagedConnection.cs" />
  54. <Compile Include="Data\SqliteDisplayPreferencesRepository.cs" />
  55. <Compile Include="Data\SqliteFileOrganizationRepository.cs" />
  56. <Compile Include="Data\SqliteItemRepository.cs" />
  57. <Compile Include="Data\SqliteUserDataRepository.cs" />
  58. <Compile Include="Data\SqliteUserRepository.cs" />
  59. <Compile Include="Data\TypeMapper.cs" />
  60. <Compile Include="Devices\CameraUploadsDynamicFolder.cs" />
  61. <Compile Include="Devices\DeviceManager.cs" />
  62. <Compile Include="Devices\DeviceRepository.cs" />
  63. <Compile Include="Dto\DtoService.cs" />
  64. <Compile Include="EntryPoints\AutomaticRestartEntryPoint.cs" />
  65. <Compile Include="EntryPoints\KeepServerAwake.cs" />
  66. <Compile Include="EntryPoints\LibraryChangedNotifier.cs" />
  67. <Compile Include="EntryPoints\LoadRegistrations.cs" />
  68. <Compile Include="EntryPoints\RecordingNotifier.cs" />
  69. <Compile Include="EntryPoints\RefreshUsersMetadata.cs" />
  70. <Compile Include="EntryPoints\ServerEventNotifier.cs" />
  71. <Compile Include="EntryPoints\StartupWizard.cs" />
  72. <Compile Include="EntryPoints\SystemEvents.cs" />
  73. <Compile Include="EntryPoints\UdpServerEntryPoint.cs" />
  74. <Compile Include="EntryPoints\UsageEntryPoint.cs" />
  75. <Compile Include="EntryPoints\UsageReporter.cs" />
  76. <Compile Include="EntryPoints\UserDataChangeNotifier.cs" />
  77. <Compile Include="FFMpeg\FFMpegInfo.cs" />
  78. <Compile Include="FFMpeg\FFMpegInstallInfo.cs" />
  79. <Compile Include="FFMpeg\FFMpegLoader.cs" />
  80. <Compile Include="FileOrganization\EpisodeFileOrganizer.cs" />
  81. <Compile Include="FileOrganization\Extensions.cs" />
  82. <Compile Include="FileOrganization\FileOrganizationNotifier.cs" />
  83. <Compile Include="FileOrganization\FileOrganizationService.cs" />
  84. <Compile Include="FileOrganization\NameUtils.cs" />
  85. <Compile Include="FileOrganization\OrganizerScheduledTask.cs" />
  86. <Compile Include="FileOrganization\TvFolderOrganizer.cs" />
  87. <Compile Include="HttpServer\GetSwaggerResource.cs" />
  88. <Compile Include="HttpServer\HttpListenerHost.cs" />
  89. <Compile Include="HttpServer\HttpResultFactory.cs" />
  90. <Compile Include="HttpServer\LoggerUtils.cs" />
  91. <Compile Include="HttpServer\RangeRequestWriter.cs" />
  92. <Compile Include="HttpServer\ResponseFilter.cs" />
  93. <Compile Include="HttpServer\SocketSharp\Extensions.cs" />
  94. <Compile Include="HttpServer\SocketSharp\HttpUtility.cs" />
  95. <Compile Include="HttpServer\IHttpListener.cs" />
  96. <Compile Include="HttpServer\Security\AuthorizationContext.cs" />
  97. <Compile Include="HttpServer\Security\AuthService.cs" />
  98. <Compile Include="HttpServer\Security\SessionContext.cs" />
  99. <Compile Include="HttpServer\SocketSharp\RequestMono.cs" />
  100. <Compile Include="HttpServer\SocketSharp\SharpWebSocket.cs" />
  101. <Compile Include="HttpServer\SocketSharp\WebSocketSharpListener.cs" />
  102. <Compile Include="HttpServer\SocketSharp\WebSocketSharpRequest.cs" />
  103. <Compile Include="HttpServer\SocketSharp\WebSocketSharpResponse.cs" />
  104. <Compile Include="HttpServer\StreamWriter.cs" />
  105. <Compile Include="HttpServer\SwaggerService.cs" />
  106. <Compile Include="Images\BaseDynamicImageProvider.cs" />
  107. <Compile Include="IO\FileRefresher.cs" />
  108. <Compile Include="IO\MbLinkShortcutHandler.cs" />
  109. <Compile Include="IO\ThrottledStream.cs" />
  110. <Compile Include="Library\CoreResolutionIgnoreRule.cs" />
  111. <Compile Include="Library\LibraryManager.cs" />
  112. <Compile Include="Library\LocalTrailerPostScanTask.cs" />
  113. <Compile Include="Library\MediaSourceManager.cs" />
  114. <Compile Include="Library\MusicManager.cs" />
  115. <Compile Include="Library\PathExtensions.cs" />
  116. <Compile Include="Library\ResolverHelper.cs" />
  117. <Compile Include="Library\Resolvers\Audio\AudioResolver.cs" />
  118. <Compile Include="Library\Resolvers\Audio\MusicAlbumResolver.cs" />
  119. <Compile Include="Library\Resolvers\Audio\MusicArtistResolver.cs" />
  120. <Compile Include="Library\Resolvers\BaseVideoResolver.cs" />
  121. <Compile Include="Library\Resolvers\Books\BookResolver.cs" />
  122. <Compile Include="Library\Resolvers\FolderResolver.cs" />
  123. <Compile Include="Library\Resolvers\ItemResolver.cs" />
  124. <Compile Include="Library\Resolvers\Movies\BoxSetResolver.cs" />
  125. <Compile Include="Library\Resolvers\Movies\MovieResolver.cs" />
  126. <Compile Include="Library\Resolvers\PhotoAlbumResolver.cs" />
  127. <Compile Include="Library\Resolvers\PhotoResolver.cs" />
  128. <Compile Include="Library\Resolvers\PlaylistResolver.cs" />
  129. <Compile Include="Library\Resolvers\SpecialFolderResolver.cs" />
  130. <Compile Include="Library\Resolvers\TV\EpisodeResolver.cs" />
  131. <Compile Include="Library\Resolvers\TV\SeasonResolver.cs" />
  132. <Compile Include="Library\Resolvers\TV\SeriesResolver.cs" />
  133. <Compile Include="Library\Resolvers\VideoResolver.cs" />
  134. <Compile Include="Library\SearchEngine.cs" />
  135. <Compile Include="Library\UserDataManager.cs" />
  136. <Compile Include="Library\UserManager.cs" />
  137. <Compile Include="Library\UserViewManager.cs" />
  138. <Compile Include="Library\Validators\ArtistsPostScanTask.cs" />
  139. <Compile Include="Library\Validators\ArtistsValidator.cs" />
  140. <Compile Include="Library\Validators\GameGenresPostScanTask.cs" />
  141. <Compile Include="Library\Validators\GameGenresValidator.cs" />
  142. <Compile Include="Library\Validators\GenresPostScanTask.cs" />
  143. <Compile Include="Library\Validators\GenresValidator.cs" />
  144. <Compile Include="Library\Validators\MusicGenresPostScanTask.cs" />
  145. <Compile Include="Library\Validators\MusicGenresValidator.cs" />
  146. <Compile Include="Library\Validators\PeopleValidator.cs" />
  147. <Compile Include="Library\Validators\StudiosPostScanTask.cs" />
  148. <Compile Include="Library\Validators\StudiosValidator.cs" />
  149. <Compile Include="Library\Validators\YearsPostScanTask.cs" />
  150. <Compile Include="LiveTv\ChannelImageProvider.cs" />
  151. <Compile Include="LiveTv\EmbyTV\DirectRecorder.cs" />
  152. <Compile Include="LiveTv\EmbyTV\EmbyTV.cs" />
  153. <Compile Include="LiveTv\EmbyTV\EmbyTVRegistration.cs" />
  154. <Compile Include="LiveTv\EmbyTV\EncodedRecorder.cs" />
  155. <Compile Include="LiveTv\EmbyTV\EntryPoint.cs" />
  156. <Compile Include="LiveTv\EmbyTV\IRecorder.cs" />
  157. <Compile Include="LiveTv\EmbyTV\ItemDataProvider.cs" />
  158. <Compile Include="LiveTv\EmbyTV\RecordingHelper.cs" />
  159. <Compile Include="LiveTv\EmbyTV\SeriesTimerManager.cs" />
  160. <Compile Include="LiveTv\EmbyTV\TimerManager.cs" />
  161. <Compile Include="LiveTv\Listings\SchedulesDirect.cs" />
  162. <Compile Include="LiveTv\Listings\XmlTvListingsProvider.cs" />
  163. <Compile Include="LiveTv\LiveStreamHelper.cs" />
  164. <Compile Include="LiveTv\LiveTvConfigurationFactory.cs" />
  165. <Compile Include="LiveTv\LiveTvDtoService.cs" />
  166. <Compile Include="LiveTv\LiveTvManager.cs" />
  167. <Compile Include="LiveTv\LiveTvMediaSourceProvider.cs" />
  168. <Compile Include="LiveTv\ProgramImageProvider.cs" />
  169. <Compile Include="LiveTv\RecordingImageProvider.cs" />
  170. <Compile Include="LiveTv\RefreshChannelsScheduledTask.cs" />
  171. <Compile Include="LiveTv\TunerHosts\BaseTunerHost.cs" />
  172. <Compile Include="LiveTv\TunerHosts\HdHomerun\HdHomerunDiscovery.cs" />
  173. <Compile Include="LiveTv\TunerHosts\HdHomerun\HdHomerunHost.cs" />
  174. <Compile Include="LiveTv\TunerHosts\HdHomerun\HdHomerunLiveStream.cs" />
  175. <Compile Include="LiveTv\TunerHosts\M3uParser.cs" />
  176. <Compile Include="LiveTv\TunerHosts\M3UTunerHost.cs" />
  177. <Compile Include="LiveTv\TunerHosts\MulticastStream.cs" />
  178. <Compile Include="LiveTv\TunerHosts\QueueStream.cs" />
  179. <Compile Include="Localization\LocalizationManager.cs" />
  180. <Compile Include="Logging\UnhandledExceptionWriter.cs" />
  181. <Compile Include="MediaEncoder\EncodingManager.cs" />
  182. <Compile Include="Migrations\IVersionMigration.cs" />
  183. <Compile Include="Migrations\LibraryScanMigration.cs" />
  184. <Compile Include="Migrations\GuideMigration.cs" />
  185. <Compile Include="Migrations\UpdateLevelMigration.cs" />
  186. <Compile Include="News\NewsEntryPoint.cs" />
  187. <Compile Include="News\NewsService.cs" />
  188. <Compile Include="Notifications\CoreNotificationTypes.cs" />
  189. <Compile Include="Notifications\IConfigurableNotificationService.cs" />
  190. <Compile Include="Notifications\InternalNotificationService.cs" />
  191. <Compile Include="Notifications\NotificationConfigurationFactory.cs" />
  192. <Compile Include="Notifications\NotificationManager.cs" />
  193. <Compile Include="Notifications\Notifications.cs" />
  194. <Compile Include="Notifications\SqliteNotificationsRepository.cs" />
  195. <Compile Include="Notifications\WebSocketNotifier.cs" />
  196. <Compile Include="Data\BaseSqliteRepository.cs" />
  197. <Compile Include="Data\CleanDatabaseScheduledTask.cs" />
  198. <Compile Include="Data\SqliteExtensions.cs" />
  199. <Compile Include="Photos\PhotoAlbumImageProvider.cs" />
  200. <Compile Include="Playlists\PlaylistImageProvider.cs" />
  201. <Compile Include="Playlists\PlaylistManager.cs" />
  202. <Compile Include="Playlists\PlaylistsDynamicFolder.cs" />
  203. <Compile Include="Properties\AssemblyInfo.cs" />
  204. <Compile Include="ScheduledTasks\ChapterImagesTask.cs" />
  205. <Compile Include="ScheduledTasks\PeopleValidationTask.cs" />
  206. <Compile Include="ScheduledTasks\PluginUpdateTask.cs" />
  207. <Compile Include="ScheduledTasks\RefreshIntrosTask.cs" />
  208. <Compile Include="ScheduledTasks\RefreshMediaLibraryTask.cs" />
  209. <Compile Include="ScheduledTasks\SystemUpdateTask.cs" />
  210. <Compile Include="Security\AuthenticationRepository.cs" />
  211. <Compile Include="Security\EncryptionManager.cs" />
  212. <Compile Include="Security\MBLicenseFile.cs" />
  213. <Compile Include="Security\PluginSecurityManager.cs" />
  214. <Compile Include="Security\RegRecord.cs" />
  215. <Compile Include="ServerApplicationPaths.cs" />
  216. <Compile Include="ServerManager\ServerManager.cs" />
  217. <Compile Include="ServerManager\WebSocketConnection.cs" />
  218. <Compile Include="Services\ServicePath.cs" />
  219. <Compile Include="Services\ServiceMethod.cs" />
  220. <Compile Include="Services\ResponseHelper.cs" />
  221. <Compile Include="Services\HttpResult.cs" />
  222. <Compile Include="Services\RequestHelper.cs" />
  223. <Compile Include="Services\ServiceHandler.cs" />
  224. <Compile Include="Services\ServiceController.cs" />
  225. <Compile Include="Services\ServiceExec.cs" />
  226. <Compile Include="Services\StringMapTypeDeserializer.cs" />
  227. <Compile Include="Services\UrlExtensions.cs" />
  228. <Compile Include="Session\HttpSessionController.cs" />
  229. <Compile Include="Session\SessionManager.cs" />
  230. <Compile Include="Session\SessionWebSocketListener.cs" />
  231. <Compile Include="Session\WebSocketController.cs" />
  232. <Compile Include="Social\SharingManager.cs" />
  233. <Compile Include="Social\SharingRepository.cs" />
  234. <Compile Include="Sorting\AiredEpisodeOrderComparer.cs" />
  235. <Compile Include="Sorting\AirTimeComparer.cs" />
  236. <Compile Include="Sorting\AlbumArtistComparer.cs" />
  237. <Compile Include="Sorting\AlbumComparer.cs" />
  238. <Compile Include="Sorting\AlphanumComparator.cs" />
  239. <Compile Include="Sorting\ArtistComparer.cs" />
  240. <Compile Include="Sorting\CommunityRatingComparer.cs" />
  241. <Compile Include="Sorting\CriticRatingComparer.cs" />
  242. <Compile Include="Sorting\DateCreatedComparer.cs" />
  243. <Compile Include="Sorting\DateLastMediaAddedComparer.cs" />
  244. <Compile Include="Sorting\DatePlayedComparer.cs" />
  245. <Compile Include="Sorting\GameSystemComparer.cs" />
  246. <Compile Include="Sorting\IsFavoriteOrLikeComparer.cs" />
  247. <Compile Include="Sorting\IsFolderComparer.cs" />
  248. <Compile Include="Sorting\IsPlayedComparer.cs" />
  249. <Compile Include="Sorting\IsUnplayedComparer.cs" />
  250. <Compile Include="Sorting\MetascoreComparer.cs" />
  251. <Compile Include="Sorting\NameComparer.cs" />
  252. <Compile Include="Sorting\OfficialRatingComparer.cs" />
  253. <Compile Include="Sorting\PlayCountComparer.cs" />
  254. <Compile Include="Sorting\PlayersComparer.cs" />
  255. <Compile Include="Sorting\PremiereDateComparer.cs" />
  256. <Compile Include="Sorting\ProductionYearComparer.cs" />
  257. <Compile Include="Sorting\RandomComparer.cs" />
  258. <Compile Include="Sorting\RuntimeComparer.cs" />
  259. <Compile Include="Sorting\SeriesSortNameComparer.cs" />
  260. <Compile Include="Sorting\SortNameComparer.cs" />
  261. <Compile Include="Sorting\StartDateComparer.cs" />
  262. <Compile Include="Sorting\StudioComparer.cs" />
  263. <Compile Include="StartupOptions.cs" />
  264. <Compile Include="TV\SeriesPostScanTask.cs" />
  265. <Compile Include="TV\TVSeriesManager.cs" />
  266. <Compile Include="Udp\UdpServer.cs" />
  267. <Compile Include="Updates\InstallationManager.cs" />
  268. <Compile Include="UserViews\CollectionFolderImageProvider.cs" />
  269. <Compile Include="UserViews\DynamicImageProvider.cs" />
  270. </ItemGroup>
  271. <ItemGroup>
  272. <EmbeddedResource Include="Localization\iso6392.txt" />
  273. </ItemGroup>
  274. <ItemGroup>
  275. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  276. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  277. <Name>MediaBrowser.Common</Name>
  278. </ProjectReference>
  279. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  280. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  281. <Name>MediaBrowser.Controller</Name>
  282. </ProjectReference>
  283. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  284. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  285. <Name>MediaBrowser.Model</Name>
  286. </ProjectReference>
  287. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj">
  288. <Project>{442b5058-dcaf-4263-bb6a-f21e31120a1b}</Project>
  289. <Name>MediaBrowser.Providers</Name>
  290. </ProjectReference>
  291. <ProjectReference Include="..\MediaBrowser.Server.Implementations\MediaBrowser.Server.Implementations.csproj">
  292. <Project>{2e781478-814d-4a48-9d80-bff206441a65}</Project>
  293. <Name>MediaBrowser.Server.Implementations</Name>
  294. </ProjectReference>
  295. <ProjectReference Include="..\SocketHttpListener.Portable\SocketHttpListener.Portable.csproj">
  296. <Project>{4f26d5d8-a7b0-42b3-ba42-7cb7d245934e}</Project>
  297. <Name>SocketHttpListener.Portable</Name>
  298. </ProjectReference>
  299. <Reference Include="Emby.XmlTv, Version=1.0.6251.29080, Culture=neutral, processorArchitecture=MSIL">
  300. <HintPath>..\packages\Emby.XmlTv.1.0.7\lib\portable-net45+win8\Emby.XmlTv.dll</HintPath>
  301. <Private>True</Private>
  302. </Reference>
  303. <Reference Include="MediaBrowser.Naming, Version=1.0.6201.24431, Culture=neutral, processorArchitecture=MSIL">
  304. <HintPath>..\packages\MediaBrowser.Naming.1.0.4\lib\portable-net45+win8\MediaBrowser.Naming.dll</HintPath>
  305. <Private>True</Private>
  306. </Reference>
  307. <Reference Include="SQLitePCL.pretty, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  308. <HintPath>..\packages\SQLitePCL.pretty.1.1.0\lib\portable-net45+netcore45+wpa81+wp8\SQLitePCL.pretty.dll</HintPath>
  309. <Private>True</Private>
  310. </Reference>
  311. <Reference Include="SQLitePCLRaw.core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL">
  312. <HintPath>..\packages\SQLitePCLRaw.core.1.1.2\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.core.dll</HintPath>
  313. <Private>True</Private>
  314. </Reference>
  315. <Reference Include="UniversalDetector, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  316. <HintPath>..\packages\UniversalDetector.1.0.1\lib\portable-net45+sl4+wp71+win8+wpa81\UniversalDetector.dll</HintPath>
  317. <Private>True</Private>
  318. </Reference>
  319. </ItemGroup>
  320. <ItemGroup>
  321. <EmbeddedResource Include="Localization\Core\ar.json" />
  322. <EmbeddedResource Include="Localization\Core\bg-BG.json" />
  323. <EmbeddedResource Include="Localization\Core\ca.json" />
  324. <EmbeddedResource Include="Localization\Core\core.json" />
  325. <EmbeddedResource Include="Localization\Core\cs.json" />
  326. <EmbeddedResource Include="Localization\Core\da.json" />
  327. <EmbeddedResource Include="Localization\Core\de.json" />
  328. <EmbeddedResource Include="Localization\Core\el.json" />
  329. <EmbeddedResource Include="Localization\Core\en-GB.json" />
  330. <EmbeddedResource Include="Localization\Core\en-US.json" />
  331. <EmbeddedResource Include="Localization\Core\es-AR.json" />
  332. <EmbeddedResource Include="Localization\Core\es-MX.json" />
  333. <EmbeddedResource Include="Localization\Core\es.json" />
  334. <EmbeddedResource Include="Localization\Core\fi.json" />
  335. <EmbeddedResource Include="Localization\Core\fr-CA.json" />
  336. <EmbeddedResource Include="Localization\Core\fr.json" />
  337. <EmbeddedResource Include="Localization\Core\gsw.json" />
  338. <EmbeddedResource Include="Localization\Core\he.json" />
  339. <EmbeddedResource Include="Localization\Core\hr.json" />
  340. <EmbeddedResource Include="Localization\Core\hu.json" />
  341. <EmbeddedResource Include="Localization\Core\id.json" />
  342. <EmbeddedResource Include="Localization\Core\it.json" />
  343. <EmbeddedResource Include="Localization\Core\kk.json" />
  344. <EmbeddedResource Include="Localization\Core\ko.json" />
  345. <EmbeddedResource Include="Localization\Core\ms.json" />
  346. <EmbeddedResource Include="Localization\Core\nb.json" />
  347. <EmbeddedResource Include="Localization\Core\nl.json" />
  348. <EmbeddedResource Include="Localization\Core\pl.json" />
  349. <EmbeddedResource Include="Localization\Core\pt-BR.json" />
  350. <EmbeddedResource Include="Localization\Core\pt-PT.json" />
  351. <EmbeddedResource Include="Localization\Core\ro.json" />
  352. <EmbeddedResource Include="Localization\Core\ru.json" />
  353. <EmbeddedResource Include="Localization\Core\sl-SI.json" />
  354. <EmbeddedResource Include="Localization\Core\sv.json" />
  355. <EmbeddedResource Include="Localization\Core\tr.json" />
  356. <EmbeddedResource Include="Localization\Core\uk.json" />
  357. <EmbeddedResource Include="Localization\Core\vi.json" />
  358. <EmbeddedResource Include="Localization\Core\zh-CN.json" />
  359. <EmbeddedResource Include="Localization\Core\zh-HK.json" />
  360. <EmbeddedResource Include="Localization\Core\zh-TW.json" />
  361. <EmbeddedResource Include="Localization\countries.json" />
  362. <None Include="packages.config" />
  363. </ItemGroup>
  364. <ItemGroup>
  365. <EmbeddedResource Include="Localization\Ratings\au.txt" />
  366. </ItemGroup>
  367. <ItemGroup>
  368. <EmbeddedResource Include="Localization\Ratings\be.txt" />
  369. </ItemGroup>
  370. <ItemGroup>
  371. <EmbeddedResource Include="Localization\Ratings\br.txt" />
  372. </ItemGroup>
  373. <ItemGroup>
  374. <EmbeddedResource Include="Localization\Ratings\ca.txt" />
  375. </ItemGroup>
  376. <ItemGroup>
  377. <EmbeddedResource Include="Localization\Ratings\co.txt" />
  378. </ItemGroup>
  379. <ItemGroup>
  380. <EmbeddedResource Include="Localization\Ratings\de.txt" />
  381. </ItemGroup>
  382. <ItemGroup>
  383. <EmbeddedResource Include="Localization\Ratings\dk.txt" />
  384. </ItemGroup>
  385. <ItemGroup>
  386. <EmbeddedResource Include="Localization\Ratings\fr.txt" />
  387. </ItemGroup>
  388. <ItemGroup>
  389. <EmbeddedResource Include="Localization\Ratings\gb.txt" />
  390. </ItemGroup>
  391. <ItemGroup>
  392. <EmbeddedResource Include="Localization\Ratings\ie.txt" />
  393. </ItemGroup>
  394. <ItemGroup>
  395. <EmbeddedResource Include="Localization\Ratings\jp.txt" />
  396. </ItemGroup>
  397. <ItemGroup>
  398. <EmbeddedResource Include="Localization\Ratings\kz.txt" />
  399. </ItemGroup>
  400. <ItemGroup>
  401. <EmbeddedResource Include="Localization\Ratings\mx.txt" />
  402. </ItemGroup>
  403. <ItemGroup>
  404. <EmbeddedResource Include="Localization\Ratings\nl.txt" />
  405. </ItemGroup>
  406. <ItemGroup>
  407. <EmbeddedResource Include="Localization\Ratings\nz.txt" />
  408. </ItemGroup>
  409. <ItemGroup>
  410. <EmbeddedResource Include="Localization\Ratings\ru.txt" />
  411. </ItemGroup>
  412. <ItemGroup>
  413. <EmbeddedResource Include="Localization\Ratings\us.txt" />
  414. </ItemGroup>
  415. <ItemGroup>
  416. <EmbeddedResource Include="Localization\Ratings\uk.txt" />
  417. </ItemGroup>
  418. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  419. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  420. Other similar extension points exist, see Microsoft.Common.targets.
  421. <Target Name="BeforeBuild">
  422. </Target>
  423. <Target Name="AfterBuild">
  424. </Target>
  425. -->
  426. </Project>