Emby.Server.Implementations.csproj 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  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="Branding\BrandingConfigurationFactory.cs" />
  38. <Compile Include="Channels\ChannelConfigurations.cs" />
  39. <Compile Include="Channels\ChannelDynamicMediaSourceProvider.cs" />
  40. <Compile Include="Channels\ChannelImageProvider.cs" />
  41. <Compile Include="Channels\ChannelManager.cs" />
  42. <Compile Include="Channels\ChannelPostScanTask.cs" />
  43. <Compile Include="Channels\RefreshChannelsScheduledTask.cs" />
  44. <Compile Include="Collections\CollectionImageProvider.cs" />
  45. <Compile Include="Collections\CollectionManager.cs" />
  46. <Compile Include="Connect\ConnectData.cs" />
  47. <Compile Include="Connect\ConnectEntryPoint.cs" />
  48. <Compile Include="Connect\ConnectManager.cs" />
  49. <Compile Include="Connect\Responses.cs" />
  50. <Compile Include="Connect\Validator.cs" />
  51. <Compile Include="Devices\DeviceManager.cs" />
  52. <Compile Include="Dto\DtoService.cs" />
  53. <Compile Include="EntryPoints\AutomaticRestartEntryPoint.cs" />
  54. <Compile Include="EntryPoints\KeepServerAwake.cs" />
  55. <Compile Include="EntryPoints\LibraryChangedNotifier.cs" />
  56. <Compile Include="EntryPoints\LoadRegistrations.cs" />
  57. <Compile Include="EntryPoints\RecordingNotifier.cs" />
  58. <Compile Include="EntryPoints\RefreshUsersMetadata.cs" />
  59. <Compile Include="EntryPoints\ServerEventNotifier.cs" />
  60. <Compile Include="EntryPoints\UdpServerEntryPoint.cs" />
  61. <Compile Include="EntryPoints\UsageEntryPoint.cs" />
  62. <Compile Include="EntryPoints\UsageReporter.cs" />
  63. <Compile Include="EntryPoints\UserDataChangeNotifier.cs" />
  64. <Compile Include="FileOrganization\EpisodeFileOrganizer.cs" />
  65. <Compile Include="FileOrganization\Extensions.cs" />
  66. <Compile Include="FileOrganization\FileOrganizationNotifier.cs" />
  67. <Compile Include="FileOrganization\FileOrganizationService.cs" />
  68. <Compile Include="FileOrganization\NameUtils.cs" />
  69. <Compile Include="FileOrganization\OrganizerScheduledTask.cs" />
  70. <Compile Include="FileOrganization\TvFolderOrganizer.cs" />
  71. <Compile Include="HttpServer\GetSwaggerResource.cs" />
  72. <Compile Include="HttpServer\LoggerUtils.cs" />
  73. <Compile Include="HttpServer\RangeRequestWriter.cs" />
  74. <Compile Include="HttpServer\ResponseFilter.cs" />
  75. <Compile Include="HttpServer\SocketSharp\Extensions.cs" />
  76. <Compile Include="HttpServer\SocketSharp\HttpUtility.cs" />
  77. <Compile Include="HttpServer\IHttpListener.cs" />
  78. <Compile Include="HttpServer\Security\AuthorizationContext.cs" />
  79. <Compile Include="HttpServer\Security\AuthService.cs" />
  80. <Compile Include="HttpServer\Security\SessionContext.cs" />
  81. <Compile Include="HttpServer\SocketSharp\SharpWebSocket.cs" />
  82. <Compile Include="HttpServer\SocketSharp\WebSocketSharpListener.cs" />
  83. <Compile Include="HttpServer\SocketSharp\WebSocketSharpResponse.cs" />
  84. <Compile Include="HttpServer\StreamWriter.cs" />
  85. <Compile Include="HttpServer\SwaggerService.cs" />
  86. <Compile Include="Images\BaseDynamicImageProvider.cs" />
  87. <Compile Include="Intros\DefaultIntroProvider.cs" />
  88. <Compile Include="IO\FileRefresher.cs" />
  89. <Compile Include="IO\ThrottledStream.cs" />
  90. <Compile Include="Library\CoreResolutionIgnoreRule.cs" />
  91. <Compile Include="Library\LibraryManager.cs" />
  92. <Compile Include="Library\LocalTrailerPostScanTask.cs" />
  93. <Compile Include="Library\MediaSourceManager.cs" />
  94. <Compile Include="Library\MusicManager.cs" />
  95. <Compile Include="Library\PathExtensions.cs" />
  96. <Compile Include="Library\ResolverHelper.cs" />
  97. <Compile Include="Library\Resolvers\Audio\AudioResolver.cs" />
  98. <Compile Include="Library\Resolvers\Audio\MusicAlbumResolver.cs" />
  99. <Compile Include="Library\Resolvers\Audio\MusicArtistResolver.cs" />
  100. <Compile Include="Library\Resolvers\BaseVideoResolver.cs" />
  101. <Compile Include="Library\Resolvers\FolderResolver.cs" />
  102. <Compile Include="Library\Resolvers\ItemResolver.cs" />
  103. <Compile Include="Library\Resolvers\Movies\BoxSetResolver.cs" />
  104. <Compile Include="Library\Resolvers\Movies\MovieResolver.cs" />
  105. <Compile Include="Library\Resolvers\PhotoAlbumResolver.cs" />
  106. <Compile Include="Library\Resolvers\PhotoResolver.cs" />
  107. <Compile Include="Library\Resolvers\PlaylistResolver.cs" />
  108. <Compile Include="Library\Resolvers\SpecialFolderResolver.cs" />
  109. <Compile Include="Library\Resolvers\TV\EpisodeResolver.cs" />
  110. <Compile Include="Library\Resolvers\TV\SeasonResolver.cs" />
  111. <Compile Include="Library\Resolvers\TV\SeriesResolver.cs" />
  112. <Compile Include="Library\Resolvers\VideoResolver.cs" />
  113. <Compile Include="Library\SearchEngine.cs" />
  114. <Compile Include="Library\UserDataManager.cs" />
  115. <Compile Include="Library\UserManager.cs" />
  116. <Compile Include="Library\UserViewManager.cs" />
  117. <Compile Include="Library\Validators\ArtistsPostScanTask.cs" />
  118. <Compile Include="Library\Validators\ArtistsValidator.cs" />
  119. <Compile Include="Library\Validators\GameGenresPostScanTask.cs" />
  120. <Compile Include="Library\Validators\GameGenresValidator.cs" />
  121. <Compile Include="Library\Validators\GenresPostScanTask.cs" />
  122. <Compile Include="Library\Validators\GenresValidator.cs" />
  123. <Compile Include="Library\Validators\MusicGenresPostScanTask.cs" />
  124. <Compile Include="Library\Validators\MusicGenresValidator.cs" />
  125. <Compile Include="Library\Validators\PeopleValidator.cs" />
  126. <Compile Include="Library\Validators\StudiosPostScanTask.cs" />
  127. <Compile Include="Library\Validators\StudiosValidator.cs" />
  128. <Compile Include="Library\Validators\YearsPostScanTask.cs" />
  129. <Compile Include="LiveTv\ChannelImageProvider.cs" />
  130. <Compile Include="LiveTv\EmbyTV\DirectRecorder.cs" />
  131. <Compile Include="LiveTv\EmbyTV\EmbyTV.cs" />
  132. <Compile Include="LiveTv\EmbyTV\EmbyTVRegistration.cs" />
  133. <Compile Include="LiveTv\EmbyTV\EncodedRecorder.cs" />
  134. <Compile Include="LiveTv\EmbyTV\EntryPoint.cs" />
  135. <Compile Include="LiveTv\EmbyTV\IRecorder.cs" />
  136. <Compile Include="LiveTv\EmbyTV\ItemDataProvider.cs" />
  137. <Compile Include="LiveTv\EmbyTV\RecordingHelper.cs" />
  138. <Compile Include="LiveTv\EmbyTV\SeriesTimerManager.cs" />
  139. <Compile Include="LiveTv\EmbyTV\TimerManager.cs" />
  140. <Compile Include="LiveTv\Listings\SchedulesDirect.cs" />
  141. <Compile Include="LiveTv\Listings\XmlTvListingsProvider.cs" />
  142. <Compile Include="LiveTv\LiveStreamHelper.cs" />
  143. <Compile Include="LiveTv\LiveTvConfigurationFactory.cs" />
  144. <Compile Include="LiveTv\LiveTvDtoService.cs" />
  145. <Compile Include="LiveTv\LiveTvManager.cs" />
  146. <Compile Include="LiveTv\LiveTvMediaSourceProvider.cs" />
  147. <Compile Include="LiveTv\ProgramImageProvider.cs" />
  148. <Compile Include="LiveTv\RecordingImageProvider.cs" />
  149. <Compile Include="LiveTv\RefreshChannelsScheduledTask.cs" />
  150. <Compile Include="LiveTv\TunerHosts\BaseTunerHost.cs" />
  151. <Compile Include="LiveTv\TunerHosts\HdHomerun\HdHomerunDiscovery.cs" />
  152. <Compile Include="LiveTv\TunerHosts\HdHomerun\HdHomerunHost.cs" />
  153. <Compile Include="LiveTv\TunerHosts\HdHomerun\HdHomerunLiveStream.cs" />
  154. <Compile Include="LiveTv\TunerHosts\M3uParser.cs" />
  155. <Compile Include="LiveTv\TunerHosts\M3UTunerHost.cs" />
  156. <Compile Include="LiveTv\TunerHosts\MulticastStream.cs" />
  157. <Compile Include="LiveTv\TunerHosts\QueueStream.cs" />
  158. <Compile Include="Localization\LocalizationManager.cs" />
  159. <Compile Include="Logging\PatternsLogger.cs" />
  160. <Compile Include="MediaEncoder\EncodingManager.cs" />
  161. <Compile Include="News\NewsEntryPoint.cs" />
  162. <Compile Include="News\NewsService.cs" />
  163. <Compile Include="Notifications\CoreNotificationTypes.cs" />
  164. <Compile Include="Notifications\IConfigurableNotificationService.cs" />
  165. <Compile Include="Notifications\InternalNotificationService.cs" />
  166. <Compile Include="Notifications\NotificationConfigurationFactory.cs" />
  167. <Compile Include="Notifications\NotificationManager.cs" />
  168. <Compile Include="Notifications\Notifications.cs" />
  169. <Compile Include="Notifications\WebSocketNotifier.cs" />
  170. <Compile Include="Persistence\CleanDatabaseScheduledTask.cs" />
  171. <Compile Include="Photos\PhotoAlbumImageProvider.cs" />
  172. <Compile Include="Playlists\PlaylistImageProvider.cs" />
  173. <Compile Include="Playlists\PlaylistManager.cs" />
  174. <Compile Include="Properties\AssemblyInfo.cs" />
  175. <Compile Include="ScheduledTasks\ChapterImagesTask.cs" />
  176. <Compile Include="ScheduledTasks\PeopleValidationTask.cs" />
  177. <Compile Include="ScheduledTasks\PluginUpdateTask.cs" />
  178. <Compile Include="ScheduledTasks\RefreshIntrosTask.cs" />
  179. <Compile Include="ScheduledTasks\RefreshMediaLibraryTask.cs" />
  180. <Compile Include="ScheduledTasks\SystemUpdateTask.cs" />
  181. <Compile Include="Security\EncryptionManager.cs" />
  182. <Compile Include="Security\MBLicenseFile.cs" />
  183. <Compile Include="Security\PluginSecurityManager.cs" />
  184. <Compile Include="Security\RegRecord.cs" />
  185. <Compile Include="ServerManager\ServerManager.cs" />
  186. <Compile Include="ServerManager\WebSocketConnection.cs" />
  187. <Compile Include="Session\HttpSessionController.cs" />
  188. <Compile Include="Session\SessionManager.cs" />
  189. <Compile Include="Session\SessionWebSocketListener.cs" />
  190. <Compile Include="Session\WebSocketController.cs" />
  191. <Compile Include="Social\SharingManager.cs" />
  192. <Compile Include="Sorting\AiredEpisodeOrderComparer.cs" />
  193. <Compile Include="Sorting\AirTimeComparer.cs" />
  194. <Compile Include="Sorting\AlbumArtistComparer.cs" />
  195. <Compile Include="Sorting\AlbumComparer.cs" />
  196. <Compile Include="Sorting\AlphanumComparator.cs" />
  197. <Compile Include="Sorting\ArtistComparer.cs" />
  198. <Compile Include="Sorting\BudgetComparer.cs" />
  199. <Compile Include="Sorting\CommunityRatingComparer.cs" />
  200. <Compile Include="Sorting\CriticRatingComparer.cs" />
  201. <Compile Include="Sorting\DateCreatedComparer.cs" />
  202. <Compile Include="Sorting\DateLastMediaAddedComparer.cs" />
  203. <Compile Include="Sorting\DatePlayedComparer.cs" />
  204. <Compile Include="Sorting\GameSystemComparer.cs" />
  205. <Compile Include="Sorting\IsFavoriteOrLikeComparer.cs" />
  206. <Compile Include="Sorting\IsFolderComparer.cs" />
  207. <Compile Include="Sorting\IsPlayedComparer.cs" />
  208. <Compile Include="Sorting\IsUnplayedComparer.cs" />
  209. <Compile Include="Sorting\MetascoreComparer.cs" />
  210. <Compile Include="Sorting\NameComparer.cs" />
  211. <Compile Include="Sorting\OfficialRatingComparer.cs" />
  212. <Compile Include="Sorting\PlayCountComparer.cs" />
  213. <Compile Include="Sorting\PlayersComparer.cs" />
  214. <Compile Include="Sorting\PremiereDateComparer.cs" />
  215. <Compile Include="Sorting\ProductionYearComparer.cs" />
  216. <Compile Include="Sorting\RandomComparer.cs" />
  217. <Compile Include="Sorting\RevenueComparer.cs" />
  218. <Compile Include="Sorting\RuntimeComparer.cs" />
  219. <Compile Include="Sorting\SeriesSortNameComparer.cs" />
  220. <Compile Include="Sorting\SortNameComparer.cs" />
  221. <Compile Include="Sorting\StartDateComparer.cs" />
  222. <Compile Include="Sorting\StudioComparer.cs" />
  223. <Compile Include="Sync\AppSyncProvider.cs" />
  224. <Compile Include="Sync\CloudSyncProfile.cs" />
  225. <Compile Include="Sync\IHasSyncQuality.cs" />
  226. <Compile Include="Sync\MediaSync.cs" />
  227. <Compile Include="Sync\MultiProviderSync.cs" />
  228. <Compile Include="Sync\ServerSyncScheduledTask.cs" />
  229. <Compile Include="Sync\SyncConfig.cs" />
  230. <Compile Include="Sync\SyncConvertScheduledTask.cs" />
  231. <Compile Include="Sync\SyncedMediaSourceProvider.cs" />
  232. <Compile Include="Sync\SyncHelper.cs" />
  233. <Compile Include="Sync\SyncJobOptions.cs" />
  234. <Compile Include="Sync\SyncJobProcessor.cs" />
  235. <Compile Include="Sync\SyncManager.cs" />
  236. <Compile Include="Sync\SyncNotificationEntryPoint.cs" />
  237. <Compile Include="Sync\SyncRegistrationInfo.cs" />
  238. <Compile Include="Sync\TargetDataProvider.cs" />
  239. <Compile Include="TV\SeriesPostScanTask.cs" />
  240. <Compile Include="TV\TVSeriesManager.cs" />
  241. <Compile Include="Udp\UdpServer.cs" />
  242. <Compile Include="Updates\InstallationManager.cs" />
  243. <Compile Include="UserViews\CollectionFolderImageProvider.cs" />
  244. <Compile Include="UserViews\DynamicImageProvider.cs" />
  245. </ItemGroup>
  246. <ItemGroup>
  247. <EmbeddedResource Include="Localization\iso6392.txt" />
  248. </ItemGroup>
  249. <ItemGroup>
  250. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  251. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  252. <Name>MediaBrowser.Common</Name>
  253. </ProjectReference>
  254. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  255. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  256. <Name>MediaBrowser.Controller</Name>
  257. </ProjectReference>
  258. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  259. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  260. <Name>MediaBrowser.Model</Name>
  261. </ProjectReference>
  262. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj">
  263. <Project>{442b5058-dcaf-4263-bb6a-f21e31120a1b}</Project>
  264. <Name>MediaBrowser.Providers</Name>
  265. </ProjectReference>
  266. <Reference Include="SocketHttpListener.Portable">
  267. <HintPath>..\ThirdParty\emby\SocketHttpListener.Portable.dll</HintPath>
  268. </Reference>
  269. <Reference Include="UniversalDetector, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  270. <HintPath>..\packages\UniversalDetector.1.0.1\lib\portable-net45+sl4+wp71+win8+wpa81\UniversalDetector.dll</HintPath>
  271. <Private>True</Private>
  272. </Reference>
  273. <Reference Include="Emby.XmlTv, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  274. <HintPath>..\packages\Emby.XmlTv.1.0.0.63\lib\portable-net45+win8\Emby.XmlTv.dll</HintPath>
  275. <Private>True</Private>
  276. </Reference>
  277. <Reference Include="MediaBrowser.Naming, Version=1.0.6151.30291, Culture=neutral, processorArchitecture=MSIL">
  278. <HintPath>..\packages\MediaBrowser.Naming.1.0.0.59\lib\portable-net45+win8\MediaBrowser.Naming.dll</HintPath>
  279. <Private>True</Private>
  280. </Reference>
  281. <Reference Include="Patterns.Logging, Version=1.0.6151.30227, Culture=neutral, processorArchitecture=MSIL">
  282. <HintPath>..\packages\Patterns.Logging.1.0.0.6\lib\portable-net45+win8\Patterns.Logging.dll</HintPath>
  283. <Private>True</Private>
  284. </Reference>
  285. </ItemGroup>
  286. <ItemGroup>
  287. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\backbone-min.js">
  288. <Link>swagger-ui\lib\backbone-min.js</Link>
  289. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  290. </Content>
  291. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\handlebars-2.0.0.js">
  292. <Link>swagger-ui\lib\handlebars-2.0.0.js</Link>
  293. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  294. </Content>
  295. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\highlight.7.3.pack.js">
  296. <Link>swagger-ui\lib\highlight.7.3.pack.js</Link>
  297. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  298. </Content>
  299. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\jquery-1.8.0.min.js">
  300. <Link>swagger-ui\lib\jquery-1.8.0.min.js</Link>
  301. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  302. </Content>
  303. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\jquery.ba-bbq.min.js">
  304. <Link>swagger-ui\lib\jquery.ba-bbq.min.js</Link>
  305. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  306. </Content>
  307. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\jquery.slideto.min.js">
  308. <Link>swagger-ui\lib\jquery.slideto.min.js</Link>
  309. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  310. </Content>
  311. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\jquery.wiggle.min.js">
  312. <Link>swagger-ui\lib\jquery.wiggle.min.js</Link>
  313. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  314. </Content>
  315. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\marked.js">
  316. <Link>swagger-ui\lib\marked.js</Link>
  317. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  318. </Content>
  319. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\shred.bundle.js">
  320. <Link>swagger-ui\lib\shred.bundle.js</Link>
  321. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  322. </Content>
  323. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\swagger-client.js">
  324. <Link>swagger-ui\lib\swagger-client.js</Link>
  325. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  326. </Content>
  327. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\swagger-oauth.js">
  328. <Link>swagger-ui\lib\swagger-oauth.js</Link>
  329. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  330. </Content>
  331. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\lib\underscore-min.js">
  332. <Link>swagger-ui\lib\underscore-min.js</Link>
  333. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  334. </Content>
  335. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\o2c.html">
  336. <Link>swagger-ui\o2c.html</Link>
  337. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  338. </Content>
  339. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\patch.js">
  340. <Link>swagger-ui\patch.js</Link>
  341. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  342. </Content>
  343. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\swagger-ui.js">
  344. <Link>swagger-ui\swagger-ui.js</Link>
  345. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  346. </Content>
  347. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\swagger-ui.min.js">
  348. <Link>swagger-ui\swagger-ui.min.js</Link>
  349. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  350. </Content>
  351. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-700.eot">
  352. <Link>swagger-ui\fonts\droid-sans-v6-latin-700.eot</Link>
  353. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  354. </Content>
  355. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-700.ttf">
  356. <Link>swagger-ui\fonts\droid-sans-v6-latin-700.ttf</Link>
  357. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  358. </Content>
  359. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-700.woff">
  360. <Link>swagger-ui\fonts\droid-sans-v6-latin-700.woff</Link>
  361. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  362. </Content>
  363. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-700.woff2">
  364. <Link>swagger-ui\fonts\droid-sans-v6-latin-700.woff2</Link>
  365. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  366. </Content>
  367. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-regular.eot">
  368. <Link>swagger-ui\fonts\droid-sans-v6-latin-regular.eot</Link>
  369. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  370. </Content>
  371. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-regular.ttf">
  372. <Link>swagger-ui\fonts\droid-sans-v6-latin-regular.ttf</Link>
  373. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  374. </Content>
  375. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-regular.woff">
  376. <Link>swagger-ui\fonts\droid-sans-v6-latin-regular.woff</Link>
  377. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  378. </Content>
  379. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\fonts\droid-sans-v6-latin-regular.woff2">
  380. <Link>swagger-ui\fonts\droid-sans-v6-latin-regular.woff2</Link>
  381. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  382. </Content>
  383. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\css\reset.css">
  384. <Link>swagger-ui\css\reset.css</Link>
  385. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  386. </Content>
  387. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\css\screen.css">
  388. <Link>swagger-ui\css\screen.css</Link>
  389. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  390. </Content>
  391. <Content Include="..\ThirdParty\ServiceStack\swagger-ui\css\typography.css">
  392. <Link>swagger-ui\css\typography.css</Link>
  393. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  394. </Content>
  395. <EmbeddedResource Include="Localization\Core\ar.json" />
  396. <EmbeddedResource Include="Localization\Core\bg-BG.json" />
  397. <EmbeddedResource Include="Localization\Core\ca.json" />
  398. <EmbeddedResource Include="Localization\Core\core.json" />
  399. <EmbeddedResource Include="Localization\Core\cs.json" />
  400. <EmbeddedResource Include="Localization\Core\da.json" />
  401. <EmbeddedResource Include="Localization\Core\de.json" />
  402. <EmbeddedResource Include="Localization\Core\el.json" />
  403. <EmbeddedResource Include="Localization\Core\en-GB.json" />
  404. <EmbeddedResource Include="Localization\Core\en-US.json" />
  405. <EmbeddedResource Include="Localization\Core\es-AR.json" />
  406. <EmbeddedResource Include="Localization\Core\es-MX.json" />
  407. <EmbeddedResource Include="Localization\Core\es.json" />
  408. <EmbeddedResource Include="Localization\Core\fi.json" />
  409. <EmbeddedResource Include="Localization\Core\fr-CA.json" />
  410. <EmbeddedResource Include="Localization\Core\fr.json" />
  411. <EmbeddedResource Include="Localization\Core\gsw.json" />
  412. <EmbeddedResource Include="Localization\Core\he.json" />
  413. <EmbeddedResource Include="Localization\Core\hr.json" />
  414. <EmbeddedResource Include="Localization\Core\hu.json" />
  415. <EmbeddedResource Include="Localization\Core\id.json" />
  416. <EmbeddedResource Include="Localization\Core\it.json" />
  417. <EmbeddedResource Include="Localization\Core\kk.json" />
  418. <EmbeddedResource Include="Localization\Core\ko.json" />
  419. <EmbeddedResource Include="Localization\Core\ms.json" />
  420. <EmbeddedResource Include="Localization\Core\nb.json" />
  421. <EmbeddedResource Include="Localization\Core\nl.json" />
  422. <EmbeddedResource Include="Localization\Core\pl.json" />
  423. <EmbeddedResource Include="Localization\Core\pt-BR.json" />
  424. <EmbeddedResource Include="Localization\Core\pt-PT.json" />
  425. <EmbeddedResource Include="Localization\Core\ro.json" />
  426. <EmbeddedResource Include="Localization\Core\ru.json" />
  427. <EmbeddedResource Include="Localization\Core\sl-SI.json" />
  428. <EmbeddedResource Include="Localization\Core\sv.json" />
  429. <EmbeddedResource Include="Localization\Core\tr.json" />
  430. <EmbeddedResource Include="Localization\Core\uk.json" />
  431. <EmbeddedResource Include="Localization\Core\vi.json" />
  432. <EmbeddedResource Include="Localization\Core\zh-CN.json" />
  433. <EmbeddedResource Include="Localization\Core\zh-HK.json" />
  434. <EmbeddedResource Include="Localization\Core\zh-TW.json" />
  435. <EmbeddedResource Include="Localization\countries.json" />
  436. <None Include="packages.config" />
  437. </ItemGroup>
  438. <ItemGroup>
  439. <EmbeddedResource Include="Localization\Ratings\au.txt" />
  440. </ItemGroup>
  441. <ItemGroup>
  442. <EmbeddedResource Include="Localization\Ratings\be.txt" />
  443. </ItemGroup>
  444. <ItemGroup>
  445. <EmbeddedResource Include="Localization\Ratings\br.txt" />
  446. </ItemGroup>
  447. <ItemGroup>
  448. <EmbeddedResource Include="Localization\Ratings\ca.txt" />
  449. </ItemGroup>
  450. <ItemGroup>
  451. <EmbeddedResource Include="Localization\Ratings\co.txt" />
  452. </ItemGroup>
  453. <ItemGroup>
  454. <EmbeddedResource Include="Localization\Ratings\de.txt" />
  455. </ItemGroup>
  456. <ItemGroup>
  457. <EmbeddedResource Include="Localization\Ratings\dk.txt" />
  458. </ItemGroup>
  459. <ItemGroup>
  460. <EmbeddedResource Include="Localization\Ratings\fr.txt" />
  461. </ItemGroup>
  462. <ItemGroup>
  463. <EmbeddedResource Include="Localization\Ratings\gb.txt" />
  464. </ItemGroup>
  465. <ItemGroup>
  466. <EmbeddedResource Include="Localization\Ratings\ie.txt" />
  467. </ItemGroup>
  468. <ItemGroup>
  469. <EmbeddedResource Include="Localization\Ratings\jp.txt" />
  470. </ItemGroup>
  471. <ItemGroup>
  472. <EmbeddedResource Include="Localization\Ratings\kz.txt" />
  473. </ItemGroup>
  474. <ItemGroup>
  475. <EmbeddedResource Include="Localization\Ratings\mx.txt" />
  476. </ItemGroup>
  477. <ItemGroup>
  478. <EmbeddedResource Include="Localization\Ratings\nl.txt" />
  479. </ItemGroup>
  480. <ItemGroup>
  481. <EmbeddedResource Include="Localization\Ratings\nz.txt" />
  482. </ItemGroup>
  483. <ItemGroup>
  484. <EmbeddedResource Include="Localization\Ratings\ru.txt" />
  485. </ItemGroup>
  486. <ItemGroup>
  487. <EmbeddedResource Include="Localization\Ratings\us.txt" />
  488. </ItemGroup>
  489. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  490. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  491. Other similar extension points exist, see Microsoft.Common.targets.
  492. <Target Name="BeforeBuild">
  493. </Target>
  494. <Target Name="AfterBuild">
  495. </Target>
  496. -->
  497. </Project>