PDF Office.csproj 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="packages\Xamarin.Forms.5.0.0.2012\build\Xamarin.Forms.props" Condition="Exists('packages\Xamarin.Forms.5.0.0.2012\build\Xamarin.Forms.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{F3A2111D-9EAF-4ECE-9A92-B7F21D429DCD}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>PDF_Office</RootNamespace>
  11. <AssemblyName>PDF Office</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  17. <Deterministic>true</Deterministic>
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <PlatformTarget>AnyCPU</PlatformTarget>
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>embedded</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <Prefer32Bit>false</Prefer32Bit>
  31. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <PlatformTarget>AnyCPU</PlatformTarget>
  35. <DebugType>pdbonly</DebugType>
  36. <Optimize>true</Optimize>
  37. <OutputPath>bin\Release\</OutputPath>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="ComOCRKit.Desk, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  45. <SpecificVersion>False</SpecificVersion>
  46. <HintPath>.\ComOCRKit.Desk.dll</HintPath>
  47. </Reference>
  48. <Reference Include="ComPDFKit.Desk, Version=1.5.0.0, Culture=neutral, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>.\ComPDFKit.Desk.dll</HintPath>
  51. </Reference>
  52. <Reference Include="ComPDFKit.Viewer, Version=1.5.0.0, Culture=neutral, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>.\ComPDFKit.Viewer.dll</HintPath>
  55. </Reference>
  56. <Reference Include="ComPDFKit_Conversion, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
  57. <SpecificVersion>False</SpecificVersion>
  58. <HintPath>.\ComPDFKit_Conversion.dll</HintPath>
  59. </Reference>
  60. <Reference Include="DotNetSpeech, Version=5.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  61. <SpecificVersion>False</SpecificVersion>
  62. <EmbedInteropTypes>True</EmbedInteropTypes>
  63. <HintPath>.\DotNetSpeech.dll</HintPath>
  64. </Reference>
  65. <Reference Include="Dragablz, Version=0.0.4.0, Culture=neutral, processorArchitecture=MSIL">
  66. <SpecificVersion>False</SpecificVersion>
  67. <HintPath>.\Dragablz.dll</HintPath>
  68. </Reference>
  69. <Reference Include="Dropbox.Api, Version=6.33.0.0, Culture=neutral, PublicKeyToken=310f0e82fbb45d01, processorArchitecture=MSIL">
  70. <HintPath>packages\Dropbox.Api.6.33.0\lib\netstandard2.0\Dropbox.Api.dll</HintPath>
  71. </Reference>
  72. <Reference Include="DryIoc, Version=4.7.7.0, Culture=neutral, PublicKeyToken=dfbf2bd50fcf7768, processorArchitecture=MSIL">
  73. <HintPath>packages\DryIoc.dll.4.7.7\lib\net45\DryIoc.dll</HintPath>
  74. </Reference>
  75. <Reference Include="Google.Apis, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  76. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.dll</HintPath>
  77. </Reference>
  78. <Reference Include="Google.Apis.Auth, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  79. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.dll</HintPath>
  80. </Reference>
  81. <Reference Include="Google.Apis.Auth.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  82. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.PlatformServices.dll</HintPath>
  83. </Reference>
  84. <Reference Include="Google.Apis.Core, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  85. <HintPath>packages\Google.Apis.Core.1.57.0\lib\net45\Google.Apis.Core.dll</HintPath>
  86. </Reference>
  87. <Reference Include="Google.Apis.Drive.v3, Version=1.57.0.2859, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  88. <HintPath>packages\Google.Apis.Drive.v3.1.57.0.2859\lib\net45\Google.Apis.Drive.v3.dll</HintPath>
  89. </Reference>
  90. <Reference Include="Google.Apis.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  91. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.PlatformServices.dll</HintPath>
  92. </Reference>
  93. <Reference Include="Microsoft.AppCenter, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  94. <HintPath>packages\Microsoft.AppCenter.4.5.0\lib\net461\Microsoft.AppCenter.dll</HintPath>
  95. </Reference>
  96. <Reference Include="Microsoft.AppCenter.Analytics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  97. <HintPath>packages\Microsoft.AppCenter.Analytics.4.5.0\lib\net461\Microsoft.AppCenter.Analytics.dll</HintPath>
  98. </Reference>
  99. <Reference Include="Microsoft.AppCenter.Crashes, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  100. <HintPath>packages\Microsoft.AppCenter.Crashes.4.5.0\lib\net461\Microsoft.AppCenter.Crashes.dll</HintPath>
  101. </Reference>
  102. <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  103. <HintPath>packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
  104. <EmbedInteropTypes>True</EmbedInteropTypes>
  105. </Reference>
  106. <Reference Include="Microsoft.Office.Interop.PowerPoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  107. <HintPath>packages\Microsoft.Office.Interop.PowerPoint.15.0.4420.1018\lib\net20\Microsoft.Office.Interop.PowerPoint.dll</HintPath>
  108. <EmbedInteropTypes>True</EmbedInteropTypes>
  109. </Reference>
  110. <Reference Include="Microsoft.Office.Interop.Word, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  111. <HintPath>packages\Microsoft.Office.Interop.Word.15.0.4797.1004\lib\net20\Microsoft.Office.Interop.Word.dll</HintPath>
  112. <EmbedInteropTypes>True</EmbedInteropTypes>
  113. </Reference>
  114. <Reference Include="Microsoft.Xaml.Behaviors, Version=1.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  115. <HintPath>packages\Microsoft.Xaml.Behaviors.Wpf.1.1.31\lib\net45\Microsoft.Xaml.Behaviors.dll</HintPath>
  116. </Reference>
  117. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  118. <HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  119. </Reference>
  120. <Reference Include="office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
  121. <EmbedInteropTypes>True</EmbedInteropTypes>
  122. </Reference>
  123. <Reference Include="Prism, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  124. <HintPath>packages\Prism.Core.8.1.97\lib\net461\Prism.dll</HintPath>
  125. </Reference>
  126. <Reference Include="Prism.DryIoc.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  127. <HintPath>packages\Prism.DryIoc.8.1.97\lib\net461\Prism.DryIoc.Wpf.dll</HintPath>
  128. </Reference>
  129. <Reference Include="Prism.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  130. <HintPath>packages\Prism.Wpf.8.1.97\lib\net461\Prism.Wpf.dll</HintPath>
  131. </Reference>
  132. <Reference Include="SQLitePCLRaw.batteries_v2, Version=2.0.2.669, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL">
  133. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.batteries_v2.dll</HintPath>
  134. </Reference>
  135. <Reference Include="SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL">
  136. <HintPath>packages\SQLitePCLRaw.core.2.0.2\lib\netstandard2.0\SQLitePCLRaw.core.dll</HintPath>
  137. </Reference>
  138. <Reference Include="SQLitePCLRaw.nativelibrary, Version=2.0.2.669, Culture=neutral, PublicKeyToken=502ed628492ab262, processorArchitecture=MSIL">
  139. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.nativelibrary.dll</HintPath>
  140. </Reference>
  141. <Reference Include="SQLitePCLRaw.provider.dynamic_cdecl, Version=2.0.2.669, Culture=neutral, PublicKeyToken=b68184102cba0b3b, processorArchitecture=MSIL">
  142. <HintPath>packages\SQLitePCLRaw.provider.dynamic_cdecl.2.0.2\lib\netstandard2.0\SQLitePCLRaw.provider.dynamic_cdecl.dll</HintPath>
  143. </Reference>
  144. <Reference Include="System" />
  145. <Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  146. <HintPath>packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
  147. </Reference>
  148. <Reference Include="System.Configuration" />
  149. <Reference Include="System.Data" />
  150. <Reference Include="System.Deployment" />
  151. <Reference Include="System.Drawing" />
  152. <Reference Include="System.Management" />
  153. <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  154. <HintPath>packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
  155. </Reference>
  156. <Reference Include="System.Numerics" />
  157. <Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  158. <HintPath>packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
  159. </Reference>
  160. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  161. <HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  162. </Reference>
  163. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  164. <HintPath>packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  165. </Reference>
  166. <Reference Include="System.Windows.Forms" />
  167. <Reference Include="System.Xml" />
  168. <Reference Include="Microsoft.CSharp" />
  169. <Reference Include="System.Core" />
  170. <Reference Include="System.Xml.Linq" />
  171. <Reference Include="System.Data.DataSetExtensions" />
  172. <Reference Include="System.Net.Http" />
  173. <Reference Include="System.Xaml">
  174. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  175. </Reference>
  176. <Reference Include="VirtualizingWrapPanel, Version=1.5.7.0, Culture=neutral, processorArchitecture=MSIL">
  177. <SpecificVersion>False</SpecificVersion>
  178. <HintPath>packages\VirtualizingWrapPanel.1.5.7\lib\net452\VirtualizingWrapPanel.dll</HintPath>
  179. </Reference>
  180. <Reference Include="WindowsBase" />
  181. <Reference Include="PresentationCore" />
  182. <Reference Include="PresentationFramework" />
  183. </ItemGroup>
  184. <ItemGroup>
  185. <ApplicationDefinition Include="App.xaml">
  186. <Generator>MSBuild:Compile</Generator>
  187. <SubType>Designer</SubType>
  188. </ApplicationDefinition>
  189. <Compile Include="CustomControl\AlertsMessage.xaml.cs">
  190. <DependentUpon>AlertsMessage.xaml</DependentUpon>
  191. </Compile>
  192. <Compile Include="CustomControl\CommonWritableComboBox.xaml.cs">
  193. <DependentUpon>CommonWritableComboBox.xaml</DependentUpon>
  194. </Compile>
  195. <Compile Include="CustomControl\CustomIconToggleBtn.cs" />
  196. <Compile Include="CustomControl\DialogContent.cs" />
  197. <Compile Include="CustomControl\IconAndTextTabItem.cs" />
  198. <Compile Include="CustomControl\ListBoxItemToolBar.cs" />
  199. <Compile Include="CustomControl\MessageBoxEx.cs" />
  200. <Compile Include="CustomControl\NumericUpDown.xaml.cs">
  201. <DependentUpon>NumericUpDown.xaml</DependentUpon>
  202. </Compile>
  203. <Compile Include="CustomControl\PageTurningPreview.xaml.cs">
  204. <DependentUpon>PageTurningPreview.xaml</DependentUpon>
  205. </Compile>
  206. <Compile Include="CustomControl\SystemControl\CustomCommandAction .cs" />
  207. <Compile Include="CustomControl\SystemControl\RoutedEventTrigger.cs" />
  208. <Compile Include="CustomControl\ToastControl.xaml.cs">
  209. <DependentUpon>ToastControl.xaml</DependentUpon>
  210. </Compile>
  211. <Compile Include="CustomControl\WritableComboBox.xaml.cs">
  212. <DependentUpon>WritableComboBox.xaml</DependentUpon>
  213. </Compile>
  214. <Compile Include="DataConvert\FileFormatToIconConvert.cs" />
  215. <Compile Include="DataConvert\UnVisivleConvert.cs" />
  216. <Compile Include="EventAggregators\EditToolsEvent.cs" />
  217. <Compile Include="EventAggregators\PageEditNotifyEvent.cs" />
  218. <Compile Include="EventAggregators\PageEditRefreshEvent.cs" />
  219. <Compile Include="Helper\ConverterHelper.cs" />
  220. <Compile Include="Helper\HomePageEditHelper.cs" />
  221. <Compile Include="Helper\PasswordBoxHelper.cs" />
  222. <Compile Include="Helper\PictureConverter.cs" />
  223. <Compile Include="Helper\SDKLisenceHelper.cs" />
  224. <Compile Include="Helper\SettingHelper.cs" />
  225. <Compile Include="Helper\ToolMethod.cs" />
  226. <Compile Include="Model\CloudDrive\CloudDriveItem.cs" />
  227. <Compile Include="Model\CloudDrive\CloudFiles.cs" />
  228. <Compile Include="Model\DialogNames.cs" />
  229. <Compile Include="CustomControl\SystemControl\InterTabClient.cs" />
  230. <Compile Include="CustomControl\LoadingControl.xaml.cs">
  231. <DependentUpon>LoadingControl.xaml</DependentUpon>
  232. </Compile>
  233. <Compile Include="Model\Dialog\ConverterDialogs\ConverterCSVDialogModel.cs" />
  234. <Compile Include="Model\Dialog\ConverterDialogs\ConverterDialogsModel.cs" />
  235. <Compile Include="Model\Dialog\ConverterDialogs\ConverterExcelDialogModel.cs" />
  236. <Compile Include="Model\Dialog\ConverterDialogs\ConverterHTMLDialogModel.cs" />
  237. <Compile Include="Model\Dialog\ConverterDialogs\ConverterImgDialogModel.cs" />
  238. <Compile Include="Model\Dialog\ConverterDialogs\ConverterPPTDialogModel.cs" />
  239. <Compile Include="Model\Dialog\ConverterDialogs\ConverterRTFDialogModel.cs" />
  240. <Compile Include="Model\Dialog\ConverterDialogs\ConverterTextDialogModel.cs" />
  241. <Compile Include="Model\Dialog\ConverterDialogs\ConverterWordDialogModel.cs" />
  242. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogModel.cs" />
  243. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogModel.cs" />
  244. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVModel.cs" />
  245. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogModel.cs" />
  246. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelModel.cs" />
  247. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterHTMLModel.cs" />
  248. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgModel.cs" />
  249. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterPPTModel.cs" />
  250. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterRTFModel.cs" />
  251. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterTextModel.cs" />
  252. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordModel.cs" />
  253. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogModel.cs" />
  254. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogModel.cs" />
  255. <Compile Include="Model\Dialog\ToolsDialogs\CompressDialogModel\CompressDialogModel.cs" />
  256. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogModel.cs" />
  257. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettintgsModel.cs" />
  258. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogModel.cs" />
  259. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageExtractDialogModel.cs" />
  260. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageInsertDialogModel.cs" />
  261. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogModel.cs" />
  262. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageSplitDialogModel.cs" />
  263. <Compile Include="Model\PageEdit\ExtractModel.cs" />
  264. <Compile Include="Model\PageEdit\PageEditItem.cs" />
  265. <Compile Include="Model\ParameterNames.cs" />
  266. <Compile Include="Model\PDFTool\ToolItem.cs" />
  267. <Compile Include="Model\RegionNames.cs" />
  268. <Compile Include="CustomControl\SystemControl\TabablzRegionBehavior.cs" />
  269. <Compile Include="DataConvert\BoolToVisible.cs" />
  270. <Compile Include="DataConvert\VisibleToBoolConvert.cs" />
  271. <Compile Include="EventAggregators\DragablzWindowEvent.cs" />
  272. <Compile Include="EventAggregators\OpenFileEvent.cs" />
  273. <Compile Include="Helper\CommomEvent.cs" />
  274. <Compile Include="Helper\CommonHelper.cs" />
  275. <Compile Include="Properties\Resources.Designer.cs">
  276. <DependentUpon>Resources.resx</DependentUpon>
  277. <DesignTime>True</DesignTime>
  278. <AutoGen>True</AutoGen>
  279. </Compile>
  280. <Compile Include="ViewModels\EditTools\Background\BackgroundContentViewModel.cs" />
  281. <Compile Include="ViewModels\BOTA\BOTAContentViewModel.cs" />
  282. <Compile Include="ViewModels\BottomToolContentViewModel.cs" />
  283. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterProgressBarDialogViewModel.cs" />
  284. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterCSVDialogViewModel.cs" />
  285. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterExcelDialogViewModel.cs" />
  286. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterHTMLDialogViewModel.cs" />
  287. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterImgDialogViewModel.cs" />
  288. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterPPTDialogViewModel.cs" />
  289. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterRTFDialogViewModel.cs" />
  290. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterTextDialogViewModel.cs" />
  291. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterWordDialogViewModel.cs" />
  292. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogViewModel.cs" />
  293. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVViewModel.cs" />
  294. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelViewModel.cs" />
  295. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgViewModel.cs" />
  296. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordViewModel.cs" />
  297. <Compile Include="ViewModels\Tools\ConverterBarContentViewModel.cs" />
  298. <Compile Include="ViewModels\Dialog\ExtractDialogViewModel.cs" />
  299. <Compile Include="ViewModels\Dialog\FullScreenWindowViewModel.cs" />
  300. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogViewModel.cs" />
  301. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogViewModel.cs" />
  302. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogViewModel.cs" />
  303. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContentViewModel.cs" />
  304. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContentViewModel.cs" />
  305. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContentViewModel.cs" />
  306. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContentViewModel.cs" />
  307. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialogViewModel.cs" />
  308. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\ModInfoSendEvent.cs" />
  309. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageSplitDialogViewModel.cs" />
  310. <Compile Include="ViewModels\Dialog\PageEditDialogs\ExtractDialogViewModel.cs" />
  311. <Compile Include="ViewModels\Dialog\PageEditDialogs\InsertDialogViewModel.cs" />
  312. <Compile Include="ViewModels\Dialog\PageEditDialogs\SplitDialogViewModel.cs" />
  313. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogViewModel.cs" />
  314. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressDialogViewModel.cs" />
  315. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialogViewModel.cs" />
  316. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialogViewModel.cs" />
  317. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogViewModel.cs" />
  318. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogViewModel.cs" />
  319. <Compile Include="ViewModels\Dialog\VerifyPassWordDialogViewModel.cs" />
  320. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveContentViewModel.cs" />
  321. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveManager.cs" />
  322. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudFilesContentViewModel.cs" />
  323. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxManager.cs" />
  324. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxUserItem.cs" />
  325. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveManager.cs" />
  326. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveUserItem.cs" />
  327. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogViewModel.cs" />
  328. <Compile Include="ViewModels\HomePanel\HomeCloudContentViewModel.cs" />
  329. <Compile Include="ViewModels\HomePanel\HomeGuidContentViewModel.cs" />
  330. <Compile Include="ViewModels\HomePanel\HomeToolsContentViewModel.cs" />
  331. <Compile Include="ViewModels\MainContentViewModel.cs" />
  332. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageExtractDialogViewModel.cs" />
  333. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageInsertDialogViewModel.cs" />
  334. <Compile Include="ViewModels\PageEdit\PageEditContentViewModel.cs" />
  335. <Compile Include="ViewModels\Tools\ToolsBarContentViewModel.cs" />
  336. <Compile Include="ViewModels\EditTools\Watermark\WatermarkContentViewModel.cs" />
  337. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateBaseContentViewModel.cs" />
  338. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateFileContentViewModel.cs" />
  339. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateTextContentViewModel.cs" />
  340. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListBaseContentViewModel.cs" />
  341. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListFileContentViewModel.cs" />
  342. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListTextContentViewModel.cs" />
  343. <Compile Include="Views\BOTA\BOTAContent.xaml.cs">
  344. <DependentUpon>BOTAContent.xaml</DependentUpon>
  345. </Compile>
  346. <Compile Include="Views\BottomToolContent.xaml.cs">
  347. <DependentUpon>BottomToolContent.xaml</DependentUpon>
  348. </Compile>
  349. <Compile Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml.cs">
  350. <DependentUpon>ConverterCSVDialog.xaml</DependentUpon>
  351. </Compile>
  352. <Compile Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml.cs">
  353. <DependentUpon>ConverterExcelDialog.xaml</DependentUpon>
  354. </Compile>
  355. <Compile Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml.cs">
  356. <DependentUpon>ConverterHTMLDialog.xaml</DependentUpon>
  357. </Compile>
  358. <Compile Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml.cs">
  359. <DependentUpon>ConverterImgDialog.xaml</DependentUpon>
  360. </Compile>
  361. <Compile Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml.cs">
  362. <DependentUpon>ConverterPPTDialog.xaml</DependentUpon>
  363. </Compile>
  364. <Compile Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml.cs">
  365. <DependentUpon>ConverterProgressBarDialog.xaml</DependentUpon>
  366. </Compile>
  367. <Compile Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml.cs">
  368. <DependentUpon>ConverterRTFDialog.xaml</DependentUpon>
  369. </Compile>
  370. <Compile Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml.cs">
  371. <DependentUpon>ConverterTextDialog.xaml</DependentUpon>
  372. </Compile>
  373. <Compile Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml.cs">
  374. <DependentUpon>ConverterWordDialog.xaml</DependentUpon>
  375. </Compile>
  376. <Compile Include="Views\Dialog\FullScreenWindow.xaml.cs">
  377. <DependentUpon>FullScreenWindow.xaml</DependentUpon>
  378. </Compile>
  379. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml.cs">
  380. <DependentUpon>HomePageBatchProcessingDialog.xaml</DependentUpon>
  381. </Compile>
  382. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml.cs">
  383. <DependentUpon>HomePageCompressDialog.xaml</DependentUpon>
  384. </Compile>
  385. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml.cs">
  386. <DependentUpon>HomePageConverterCSV.xaml</DependentUpon>
  387. </Compile>
  388. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml.cs">
  389. <DependentUpon>HomePageConverterDialog.xaml</DependentUpon>
  390. </Compile>
  391. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml.cs">
  392. <DependentUpon>HomePageConverterExcel.xaml</DependentUpon>
  393. </Compile>
  394. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml.cs">
  395. <DependentUpon>HomePageConverterImg.xaml</DependentUpon>
  396. </Compile>
  397. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml.cs">
  398. <DependentUpon>HomePageConverterWord.xaml</DependentUpon>
  399. </Compile>
  400. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml.cs">
  401. <DependentUpon>HomePageSetPasswordDialog.xaml</DependentUpon>
  402. </Compile>
  403. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml.cs">
  404. <DependentUpon>HomePageExtractDialog.xaml</DependentUpon>
  405. </Compile>
  406. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml.cs">
  407. <DependentUpon>HomePageInsertDialog.xaml</DependentUpon>
  408. </Compile>
  409. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml.cs">
  410. <DependentUpon>HomePagePictureToPDFDialog.xaml</DependentUpon>
  411. </Compile>
  412. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml.cs">
  413. <DependentUpon>HomePagePrinterModBookletContent.xaml</DependentUpon>
  414. </Compile>
  415. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml.cs">
  416. <DependentUpon>HomePagePrinterModMultipleContent.xaml</DependentUpon>
  417. </Compile>
  418. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml.cs">
  419. <DependentUpon>HomePagePrinterModPosterContent.xaml</DependentUpon>
  420. </Compile>
  421. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml.cs">
  422. <DependentUpon>HomePagePrinterModSizeContent.xaml</DependentUpon>
  423. </Compile>
  424. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialog.xaml.cs">
  425. <DependentUpon>HomePagePrinterPageSetDialog.xaml</DependentUpon>
  426. </Compile>
  427. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml.cs">
  428. <DependentUpon>HomePageSplitDialog.xaml</DependentUpon>
  429. </Compile>
  430. <Compile Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml.cs">
  431. <DependentUpon>ExtractDialog.xaml</DependentUpon>
  432. </Compile>
  433. <Compile Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml.cs">
  434. <DependentUpon>InsertDialog.xaml</DependentUpon>
  435. </Compile>
  436. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\SplitDialog.xaml.cs">
  437. <DependentUpon>SplitDialog.xaml</DependentUpon>
  438. </Compile>
  439. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml.cs">
  440. <DependentUpon>HomePagePrinterDialog.xaml</DependentUpon>
  441. </Compile>
  442. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml.cs">
  443. <DependentUpon>CompressDialog.xaml</DependentUpon>
  444. </Compile>
  445. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml.cs">
  446. <DependentUpon>CompressProgressBarDialog.xaml</DependentUpon>
  447. </Compile>
  448. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml.cs">
  449. <DependentUpon>CheckPasswordDialog.xaml</DependentUpon>
  450. </Compile>
  451. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml.cs">
  452. <DependentUpon>DeleteSafetySettingsDialog.xaml</DependentUpon>
  453. </Compile>
  454. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml.cs">
  455. <DependentUpon>SetPasswordDialog.xaml</DependentUpon>
  456. </Compile>
  457. <Compile Include="Views\Dialog\VerifyPassWordDialog.xaml.cs">
  458. <DependentUpon>VerifyPassWordDialog.xaml</DependentUpon>
  459. </Compile>
  460. <Compile Include="Views\EditTools\Background\BackgroundContent.xaml.cs">
  461. <DependentUpon>BackgroundContent.xaml</DependentUpon>
  462. </Compile>
  463. <Compile Include="Views\EditTools\Watermark\WatermarkContent.xaml.cs">
  464. <DependentUpon>WatermarkContent.xaml</DependentUpon>
  465. </Compile>
  466. <Compile Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml.cs">
  467. <DependentUpon>WatermarkCreateBaseContent.xaml</DependentUpon>
  468. </Compile>
  469. <Compile Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml.cs">
  470. <DependentUpon>WatermarkCreateFileContent.xaml</DependentUpon>
  471. </Compile>
  472. <Compile Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml.cs">
  473. <DependentUpon>WatermarkCreateTextContent.xaml</DependentUpon>
  474. </Compile>
  475. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml.cs">
  476. <DependentUpon>WatermarkTemplateListBaseContent.xaml</DependentUpon>
  477. </Compile>
  478. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml.cs">
  479. <DependentUpon>WatermarkTemplateListFileContent.xaml</DependentUpon>
  480. </Compile>
  481. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml.cs">
  482. <DependentUpon>WatermarkTemplateListTextContent.xaml</DependentUpon>
  483. </Compile>
  484. <Compile Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml.cs">
  485. <DependentUpon>CloudDriveContent.xaml</DependentUpon>
  486. </Compile>
  487. <Compile Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml.cs">
  488. <DependentUpon>CloudFilesContent.xaml</DependentUpon>
  489. </Compile>
  490. <Compile Include="Views\HomePanel\HomeCloudContent.xaml.cs">
  491. <DependentUpon>HomeCloudContent.xaml</DependentUpon>
  492. </Compile>
  493. <Compile Include="Views\HomePanel\HomeGuidContent.xaml.cs">
  494. <DependentUpon>HomeGuidContent.xaml</DependentUpon>
  495. </Compile>
  496. <Compile Include="Views\HomePanel\PDFTools\PDFToolItem.xaml.cs">
  497. <DependentUpon>PDFToolItem.xaml</DependentUpon>
  498. </Compile>
  499. <Compile Include="Views\HomePanel\HomeToolsContent.xaml.cs">
  500. <DependentUpon>HomeToolsContent.xaml</DependentUpon>
  501. </Compile>
  502. <Compile Include="Views\HomePanel\PDFTools\PDFTools.cs" />
  503. <Compile Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml.cs">
  504. <DependentUpon>PDFToolsContent.xaml</DependentUpon>
  505. </Compile>
  506. <Compile Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml.cs">
  507. <DependentUpon>QuickToolsContent.xaml</DependentUpon>
  508. </Compile>
  509. <Compile Include="Views\HomePanel\PromotionContent.xaml.cs">
  510. <DependentUpon>PromotionContent.xaml</DependentUpon>
  511. </Compile>
  512. <Compile Include="Views\HomePanel\RecentFiles\DocItemControl.xaml.cs">
  513. <DependentUpon>DocItemControl.xaml</DependentUpon>
  514. </Compile>
  515. <Compile Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml.cs">
  516. <DependentUpon>DocItemListViewControl.xaml</DependentUpon>
  517. </Compile>
  518. <Compile Include="Views\HomePanel\RecentFiles\RecentFilesView.xaml.cs">
  519. <DependentUpon>RecentFilesView.xaml</DependentUpon>
  520. </Compile>
  521. <Compile Include="Views\MainContent.xaml.cs">
  522. <DependentUpon>MainContent.xaml</DependentUpon>
  523. </Compile>
  524. <Compile Include="Views\PageEdit\PageEditContent.xaml.cs">
  525. <DependentUpon>PageEditContent.xaml</DependentUpon>
  526. </Compile>
  527. <Compile Include="Views\Tools\AnnotToolContent.xaml.cs">
  528. <DependentUpon>AnnotToolContent.xaml</DependentUpon>
  529. </Compile>
  530. <Compile Include="Views\Tools\ConverterBarContent.xaml.cs">
  531. <DependentUpon>ConverterBarContent.xaml</DependentUpon>
  532. </Compile>
  533. <Compile Include="Views\Tools\ToolsBarContent.xaml.cs">
  534. <DependentUpon>ToolsBarContent.xaml</DependentUpon>
  535. </Compile>
  536. <Compile Include="Views\ViewContent.xaml.cs">
  537. <DependentUpon>ViewContent.xaml</DependentUpon>
  538. </Compile>
  539. <Page Include="CustomControl\AlertsMessage.xaml">
  540. <Generator>MSBuild:Compile</Generator>
  541. <SubType>Designer</SubType>
  542. </Page>
  543. <Page Include="CustomControl\CommonWritableComboBox.xaml">
  544. <SubType>Designer</SubType>
  545. <Generator>MSBuild:Compile</Generator>
  546. </Page>
  547. <Page Include="CustomControl\LoadingControl.xaml">
  548. <SubType>Designer</SubType>
  549. <Generator>MSBuild:Compile</Generator>
  550. </Page>
  551. <Page Include="CustomControl\NumericUpDown.xaml">
  552. <SubType>Designer</SubType>
  553. <Generator>MSBuild:Compile</Generator>
  554. </Page>
  555. <Page Include="CustomControl\PageTurningPreview.xaml">
  556. <SubType>Designer</SubType>
  557. <Generator>MSBuild:Compile</Generator>
  558. </Page>
  559. <Page Include="CustomControl\ToastControl.xaml">
  560. <Generator>MSBuild:Compile</Generator>
  561. <SubType>Designer</SubType>
  562. </Page>
  563. <Page Include="CustomControl\WritableComboBox.xaml">
  564. <SubType>Designer</SubType>
  565. <Generator>MSBuild:Compile</Generator>
  566. </Page>
  567. <Page Include="Styles\ComboxStyle.xaml">
  568. <SubType>Designer</SubType>
  569. <Generator>MSBuild:Compile</Generator>
  570. </Page>
  571. <Page Include="Styles\CustomBtnStyle.xaml">
  572. <Generator>MSBuild:Compile</Generator>
  573. <SubType>Designer</SubType>
  574. </Page>
  575. <Page Include="Styles\CustomListItemStyle.xaml">
  576. <SubType>Designer</SubType>
  577. <Generator>MSBuild:Compile</Generator>
  578. </Page>
  579. <Page Include="Styles\ExpanderStyle.xaml">
  580. <Generator>MSBuild:Compile</Generator>
  581. <SubType>Designer</SubType>
  582. </Page>
  583. <Page Include="Styles\ListBoxStyle.xaml">
  584. <Generator>MSBuild:Compile</Generator>
  585. <SubType>Designer</SubType>
  586. </Page>
  587. <Page Include="Styles\ListViewStyle.xaml">
  588. <Generator>MSBuild:Compile</Generator>
  589. <SubType>Designer</SubType>
  590. </Page>
  591. <Page Include="Styles\MenuStyle.xaml">
  592. <SubType>Designer</SubType>
  593. <Generator>MSBuild:Compile</Generator>
  594. </Page>
  595. <Page Include="Styles\TabControlStyle.xaml">
  596. <SubType>Designer</SubType>
  597. <Generator>MSBuild:Compile</Generator>
  598. </Page>
  599. <Page Include="Styles\WindowsStyle.xaml">
  600. <Generator>MSBuild:Compile</Generator>
  601. <SubType>Designer</SubType>
  602. </Page>
  603. <Page Include="Themes\Generic.xaml">
  604. <Generator>MSBuild:Compile</Generator>
  605. <SubType>Designer</SubType>
  606. </Page>
  607. <Page Include="Views\BOTA\BOTAContent.xaml">
  608. <SubType>Designer</SubType>
  609. <Generator>MSBuild:Compile</Generator>
  610. </Page>
  611. <Page Include="Views\BottomToolContent.xaml">
  612. <SubType>Designer</SubType>
  613. <Generator>MSBuild:Compile</Generator>
  614. </Page>
  615. <Page Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml">
  616. <SubType>Designer</SubType>
  617. <Generator>MSBuild:Compile</Generator>
  618. </Page>
  619. <Page Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml">
  620. <SubType>Designer</SubType>
  621. <Generator>MSBuild:Compile</Generator>
  622. </Page>
  623. <Page Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml">
  624. <SubType>Designer</SubType>
  625. <Generator>MSBuild:Compile</Generator>
  626. </Page>
  627. <Page Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml">
  628. <SubType>Designer</SubType>
  629. <Generator>MSBuild:Compile</Generator>
  630. </Page>
  631. <Page Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml">
  632. <SubType>Designer</SubType>
  633. <Generator>MSBuild:Compile</Generator>
  634. </Page>
  635. <Page Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml">
  636. <SubType>Designer</SubType>
  637. <Generator>MSBuild:Compile</Generator>
  638. </Page>
  639. <Page Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml">
  640. <SubType>Designer</SubType>
  641. <Generator>MSBuild:Compile</Generator>
  642. </Page>
  643. <Page Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml">
  644. <SubType>Designer</SubType>
  645. <Generator>MSBuild:Compile</Generator>
  646. </Page>
  647. <Page Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml">
  648. <SubType>Designer</SubType>
  649. <Generator>MSBuild:Compile</Generator>
  650. </Page>
  651. <Page Include="Views\Dialog\FullScreenWindow.xaml">
  652. <SubType>Designer</SubType>
  653. <Generator>MSBuild:Compile</Generator>
  654. </Page>
  655. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml">
  656. <SubType>Designer</SubType>
  657. <Generator>MSBuild:Compile</Generator>
  658. </Page>
  659. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml">
  660. <SubType>Designer</SubType>
  661. <Generator>MSBuild:Compile</Generator>
  662. </Page>
  663. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml">
  664. <SubType>Designer</SubType>
  665. <Generator>MSBuild:Compile</Generator>
  666. </Page>
  667. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml">
  668. <SubType>Designer</SubType>
  669. <Generator>MSBuild:Compile</Generator>
  670. </Page>
  671. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml">
  672. <SubType>Designer</SubType>
  673. <Generator>MSBuild:Compile</Generator>
  674. </Page>
  675. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml">
  676. <SubType>Designer</SubType>
  677. <Generator>MSBuild:Compile</Generator>
  678. </Page>
  679. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml">
  680. <SubType>Designer</SubType>
  681. <Generator>MSBuild:Compile</Generator>
  682. </Page>
  683. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml">
  684. <SubType>Designer</SubType>
  685. <Generator>MSBuild:Compile</Generator>
  686. </Page>
  687. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml">
  688. <SubType>Designer</SubType>
  689. <Generator>MSBuild:Compile</Generator>
  690. </Page>
  691. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml">
  692. <SubType>Designer</SubType>
  693. <Generator>MSBuild:Compile</Generator>
  694. </Page>
  695. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml">
  696. <SubType>Designer</SubType>
  697. <Generator>MSBuild:Compile</Generator>
  698. </Page>
  699. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml">
  700. <SubType>Designer</SubType>
  701. <Generator>MSBuild:Compile</Generator>
  702. </Page>
  703. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml">
  704. <SubType>Designer</SubType>
  705. <Generator>MSBuild:Compile</Generator>
  706. </Page>
  707. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml">
  708. <SubType>Designer</SubType>
  709. <Generator>MSBuild:Compile</Generator>
  710. </Page>
  711. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml">
  712. <SubType>Designer</SubType>
  713. <Generator>MSBuild:Compile</Generator>
  714. </Page>
  715. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialog.xaml">
  716. <SubType>Designer</SubType>
  717. <Generator>MSBuild:Compile</Generator>
  718. </Page>
  719. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml">
  720. <SubType>Designer</SubType>
  721. <Generator>MSBuild:Compile</Generator>
  722. </Page>
  723. <Page Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml">
  724. <Generator>MSBuild:Compile</Generator>
  725. <SubType>Designer</SubType>
  726. </Page>
  727. <Page Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml">
  728. <Generator>MSBuild:Compile</Generator>
  729. <SubType>Designer</SubType>
  730. </Page>
  731. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\SplitDialog.xaml">
  732. <Generator>MSBuild:Compile</Generator>
  733. <SubType>Designer</SubType>
  734. </Page>
  735. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml">
  736. <SubType>Designer</SubType>
  737. <Generator>MSBuild:Compile</Generator>
  738. </Page>
  739. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml">
  740. <SubType>Designer</SubType>
  741. <Generator>MSBuild:Compile</Generator>
  742. </Page>
  743. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml">
  744. <SubType>Designer</SubType>
  745. <Generator>MSBuild:Compile</Generator>
  746. </Page>
  747. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml">
  748. <SubType>Designer</SubType>
  749. <Generator>MSBuild:Compile</Generator>
  750. </Page>
  751. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml">
  752. <SubType>Designer</SubType>
  753. <Generator>MSBuild:Compile</Generator>
  754. </Page>
  755. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml">
  756. <SubType>Designer</SubType>
  757. <Generator>MSBuild:Compile</Generator>
  758. </Page>
  759. <Page Include="Views\Dialog\VerifyPassWordDialog.xaml">
  760. <SubType>Designer</SubType>
  761. <Generator>MSBuild:Compile</Generator>
  762. </Page>
  763. <Page Include="Views\EditTools\Background\BackgroundContent.xaml">
  764. <SubType>Designer</SubType>
  765. <Generator>MSBuild:Compile</Generator>
  766. </Page>
  767. <Page Include="Views\EditTools\Watermark\WatermarkContent.xaml">
  768. <SubType>Designer</SubType>
  769. <Generator>MSBuild:Compile</Generator>
  770. </Page>
  771. <Page Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml">
  772. <SubType>Designer</SubType>
  773. <Generator>MSBuild:Compile</Generator>
  774. </Page>
  775. <Page Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml">
  776. <SubType>Designer</SubType>
  777. <Generator>MSBuild:Compile</Generator>
  778. </Page>
  779. <Page Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml">
  780. <SubType>Designer</SubType>
  781. <Generator>MSBuild:Compile</Generator>
  782. </Page>
  783. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml">
  784. <SubType>Designer</SubType>
  785. <Generator>MSBuild:Compile</Generator>
  786. </Page>
  787. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml">
  788. <SubType>Designer</SubType>
  789. <Generator>MSBuild:Compile</Generator>
  790. </Page>
  791. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml">
  792. <SubType>Designer</SubType>
  793. <Generator>MSBuild:Compile</Generator>
  794. </Page>
  795. <Page Include="Views\HomeContent.xaml">
  796. <Generator>MSBuild:Compile</Generator>
  797. <SubType>Designer</SubType>
  798. </Page>
  799. <Page Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml">
  800. <SubType>Designer</SubType>
  801. <Generator>MSBuild:Compile</Generator>
  802. </Page>
  803. <Page Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml">
  804. <Generator>MSBuild:Compile</Generator>
  805. <SubType>Designer</SubType>
  806. </Page>
  807. <Page Include="Views\HomePanel\HomeCloudContent.xaml">
  808. <SubType>Designer</SubType>
  809. <Generator>MSBuild:Compile</Generator>
  810. </Page>
  811. <Page Include="Views\HomePanel\HomeGuidContent.xaml">
  812. <SubType>Designer</SubType>
  813. <Generator>MSBuild:Compile</Generator>
  814. </Page>
  815. <Page Include="Views\HomePanel\PDFTools\PDFToolItem.xaml">
  816. <Generator>MSBuild:Compile</Generator>
  817. <SubType>Designer</SubType>
  818. </Page>
  819. <Page Include="Views\HomePanel\HomeToolsContent.xaml">
  820. <SubType>Designer</SubType>
  821. <Generator>MSBuild:Compile</Generator>
  822. </Page>
  823. <Page Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml">
  824. <Generator>MSBuild:Compile</Generator>
  825. <SubType>Designer</SubType>
  826. </Page>
  827. <Page Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml">
  828. <SubType>Designer</SubType>
  829. <Generator>MSBuild:Compile</Generator>
  830. </Page>
  831. <Page Include="Views\HomePanel\PromotionContent.xaml">
  832. <Generator>MSBuild:Compile</Generator>
  833. <SubType>Designer</SubType>
  834. </Page>
  835. <Page Include="Views\HomePanel\RecentFiles\DocItemControl.xaml">
  836. <Generator>MSBuild:Compile</Generator>
  837. <SubType>Designer</SubType>
  838. </Page>
  839. <Page Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml">
  840. <Generator>MSBuild:Compile</Generator>
  841. <SubType>Designer</SubType>
  842. </Page>
  843. <Page Include="Views\HomePanel\RecentFiles\RecentFilesView.xaml">
  844. <Generator>MSBuild:Compile</Generator>
  845. <SubType>Designer</SubType>
  846. </Page>
  847. <Page Include="Views\MainContent.xaml">
  848. <SubType>Designer</SubType>
  849. <Generator>MSBuild:Compile</Generator>
  850. </Page>
  851. <Page Include="Views\MainWindow.xaml">
  852. <Generator>MSBuild:Compile</Generator>
  853. <SubType>Designer</SubType>
  854. </Page>
  855. <Compile Include="App.xaml.cs">
  856. <DependentUpon>App.xaml</DependentUpon>
  857. <SubType>Code</SubType>
  858. </Compile>
  859. <Compile Include="ViewModels\HomeContentViewModel.cs" />
  860. <Compile Include="ViewModels\MainWindowViewModel.cs" />
  861. <Compile Include="ViewModels\ViewContentViewModel.cs" />
  862. <Compile Include="Views\HomeContent.xaml.cs">
  863. <DependentUpon>HomeContent.xaml</DependentUpon>
  864. </Compile>
  865. <Compile Include="Views\MainWindow.xaml.cs">
  866. <DependentUpon>MainWindow.xaml</DependentUpon>
  867. <SubType>Code</SubType>
  868. </Compile>
  869. <Page Include="Views\PageEdit\PageEditContent.xaml">
  870. <Generator>MSBuild:Compile</Generator>
  871. <SubType>Designer</SubType>
  872. </Page>
  873. <Page Include="Views\Tools\AnnotToolContent.xaml">
  874. <SubType>Designer</SubType>
  875. <Generator>MSBuild:Compile</Generator>
  876. </Page>
  877. <Page Include="Views\Tools\ConverterBarContent.xaml">
  878. <SubType>Designer</SubType>
  879. <Generator>MSBuild:Compile</Generator>
  880. </Page>
  881. <Page Include="Views\Tools\ToolsBarContent.xaml">
  882. <SubType>Designer</SubType>
  883. <Generator>MSBuild:Compile</Generator>
  884. </Page>
  885. <Page Include="Views\ViewContent.xaml">
  886. <SubType>Designer</SubType>
  887. <Generator>MSBuild:Compile</Generator>
  888. </Page>
  889. </ItemGroup>
  890. <ItemGroup>
  891. <Compile Include="Properties\AssemblyInfo.cs">
  892. <SubType>Code</SubType>
  893. </Compile>
  894. <Compile Include="Properties\Settings.Designer.cs">
  895. <AutoGen>True</AutoGen>
  896. <DependentUpon>Settings.settings</DependentUpon>
  897. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  898. </Compile>
  899. <None Include="credentials.json">
  900. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  901. </None>
  902. <None Include="packages.config" />
  903. <None Include="Properties\Settings.settings">
  904. <Generator>SettingsSingleFileGenerator</Generator>
  905. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  906. </None>
  907. <None Include="source\AnalysisWord\Res\word\_rels\document.xml.rels" />
  908. <Content Include="source\AnalysisWord\Res\_rels\.rels">
  909. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  910. </Content>
  911. </ItemGroup>
  912. <ItemGroup>
  913. <None Include="App.config" />
  914. </ItemGroup>
  915. <ItemGroup>
  916. <Folder Include="Views\FillAndSign\" />
  917. <Folder Include="Views\Forms\" />
  918. <Folder Include="Views\Scan\" />
  919. </ItemGroup>
  920. <ItemGroup>
  921. <Content Include="ComOCRKit.Desk.dll">
  922. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  923. </Content>
  924. <Content Include="ComPDFKit.Desk.dll">
  925. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  926. </Content>
  927. <Content Include="ComPDFKit.Viewer.dll">
  928. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  929. </Content>
  930. <Content Include="ComPDFKit_Conversion.dll">
  931. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  932. </Content>
  933. <Content Include="DotNetSpeech.dll">
  934. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  935. </Content>
  936. <Content Include="Dragablz.dll">
  937. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  938. </Content>
  939. <Resource Include="StyleAndTemplateList.txt" />
  940. <Resource Include="Resources\QuickToolIcon\Batch.png" />
  941. <Resource Include="Resources\HomeIcon\file_addition.png" />
  942. <Resource Include="Resources\HomeIcon\folderOpen.png" />
  943. <Resource Include="Resources\PromotionIcon\Android.png" />
  944. <Resource Include="Resources\PromotionIcon\ComPDFKit.png" />
  945. <Resource Include="Resources\PromotionIcon\ComVideoKit.png" />
  946. <Resource Include="Resources\PromotionIcon\FilmageEditor.png" />
  947. <Resource Include="Resources\PromotionIcon\FilmageScreen.png" />
  948. <Resource Include="Resources\PromotionIcon\FreePDFTemplates.png" />
  949. <Resource Include="Resources\PromotionIcon\IPhoneiPad.png" />
  950. <Resource Include="Resources\PromotionIcon\SignFlow.png" />
  951. <Resource Include="Resources\PromotionIcon\Windows.png" />
  952. <Resource Include="Resources\FilesType\ic_propertybar_file_pdf_lock.png" />
  953. <Resource Include="Resources\FilesType\ic_propertybar_file_png_Large.png" />
  954. <Resource Include="SDKLisence.xml" />
  955. <Content Include="index.html">
  956. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  957. </Content>
  958. <Resource Include="Resources\ToolBarIcon\MyTools\Arrow.png" />
  959. <Resource Include="Resources\ToolBarIcon\MyTools\Bookmark.png" />
  960. <Resource Include="Resources\ToolBarIcon\MyTools\Circle.png" />
  961. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande.png" />
  962. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande2.png" />
  963. <Resource Include="Resources\ToolBarIcon\MyTools\Hand.png" />
  964. <Resource Include="Resources\ToolBarIcon\MyTools\Highlight.png" />
  965. <Resource Include="Resources\ToolBarIcon\MyTools\Hyperlink.png" />
  966. <Resource Include="Resources\ToolBarIcon\MyTools\Image.png" />
  967. <Resource Include="Resources\ToolBarIcon\MyTools\Line.png" />
  968. <Resource Include="Resources\ToolBarIcon\MyTools\Note.png" />
  969. <Resource Include="Resources\ToolBarIcon\MyTools\Point.png" />
  970. <Resource Include="Resources\ToolBarIcon\MyTools\Rectangle.png" />
  971. <Resource Include="Resources\ToolBarIcon\MyTools\Selecttool.png" />
  972. <Resource Include="Resources\ToolBarIcon\MyTools\Stamp.png" />
  973. <Resource Include="Resources\ToolBarIcon\MyTools\Textbox.png" />
  974. <Resource Include="Resources\ToolBarIcon\MyTools\wavyline2.png" />
  975. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout1.xml">
  976. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  977. </Content>
  978. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout10.xml">
  979. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  980. </Content>
  981. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout11.xml">
  982. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  983. </Content>
  984. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout2.xml">
  985. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  986. </Content>
  987. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout3.xml">
  988. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  989. </Content>
  990. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout4.xml">
  991. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  992. </Content>
  993. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout5.xml">
  994. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  995. </Content>
  996. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout6.xml">
  997. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  998. </Content>
  999. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout7.xml">
  1000. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1001. </Content>
  1002. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout8.xml">
  1003. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1004. </Content>
  1005. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout9.xml">
  1006. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1007. </Content>
  1008. <Content Include="source\AnalysisPPT\Res\slideMaster1.xml">
  1009. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1010. </Content>
  1011. <Content Include="source\AnalysisPPT\Res\theme1.xml">
  1012. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1013. </Content>
  1014. <Content Include="source\AnalysisPPT\Res\thumbnail.jpeg">
  1015. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1016. </Content>
  1017. <Content Include="source\AnalysisWord\Res\docProps\app.xml">
  1018. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1019. </Content>
  1020. <Content Include="source\AnalysisWord\Res\docProps\core.xml">
  1021. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1022. </Content>
  1023. <Resource Include="source\AnalysisWord\Res\word\document.xml" />
  1024. <Resource Include="source\AnalysisWord\Res\word\document0.xml" />
  1025. <Resource Include="source\AnalysisWord\Res\word\endnotes.xml" />
  1026. <Resource Include="source\AnalysisWord\Res\word\footnotes.xml" />
  1027. <Resource Include="source\AnalysisWord\Res\word\settings.xml" />
  1028. <Resource Include="source\AnalysisWord\Res\word\theme\theme1.xml" />
  1029. <Content Include="source\AnalysisWord\Res\[Content_Types].xml">
  1030. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1031. </Content>
  1032. <Content Include="SystemService\PreviewHandler.dll">
  1033. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1034. </Content>
  1035. <Content Include="SystemService\PreviewHandlerx86.dll">
  1036. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1037. </Content>
  1038. <Content Include="SystemService\TechPDFKitBase.dll">
  1039. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1040. </Content>
  1041. <Content Include="SystemService\ThumbnailProvider.dll">
  1042. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1043. </Content>
  1044. <Content Include="SystemService\ThumbnailProviderx86.dll">
  1045. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1046. </Content>
  1047. <Content Include="x64\ComPDFKit.dll">
  1048. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1049. </Content>
  1050. <Content Include="x64\CPDFConverterNative.dll">
  1051. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1052. </Content>
  1053. <Content Include="x64\libhpdf.dll">
  1054. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1055. </Content>
  1056. <Content Include="x64\libpng16.dll">
  1057. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1058. </Content>
  1059. <Content Include="x64\TechPDFKit.dll">
  1060. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1061. </Content>
  1062. <Content Include="x64\TechPdfToOffice.dll">
  1063. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1064. </Content>
  1065. <Content Include="x64\vcruntime140.dll">
  1066. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1067. </Content>
  1068. <Content Include="x64\zlib1.dll">
  1069. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1070. </Content>
  1071. <Content Include="x86\ComPDFKit.dll">
  1072. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1073. </Content>
  1074. <Content Include="x86\CPDFConverterNative.dll">
  1075. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1076. </Content>
  1077. <Content Include="x86\libhpdf.dll">
  1078. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1079. </Content>
  1080. <Content Include="x86\libpng16.dll">
  1081. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1082. </Content>
  1083. <Content Include="x86\TechPDFKit.dll">
  1084. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1085. </Content>
  1086. <Content Include="x86\TechPDFToOffice.dll">
  1087. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1088. </Content>
  1089. <Content Include="x86\vcruntime140.dll">
  1090. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1091. </Content>
  1092. <Content Include="x86\zlib1.dll">
  1093. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1094. </Content>
  1095. </ItemGroup>
  1096. <ItemGroup>
  1097. <ProjectReference Include="..\PDFSettings\PDFSettings.csproj">
  1098. <Project>{bee73aae-9a2c-446b-b64d-3a8f042c985d}</Project>
  1099. <Name>PDFSettings</Name>
  1100. </ProjectReference>
  1101. </ItemGroup>
  1102. <ItemGroup>
  1103. <EmbeddedResource Include="Properties\Resources.resx">
  1104. <Generator>ResXFileCodeGenerator</Generator>
  1105. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  1106. </EmbeddedResource>
  1107. </ItemGroup>
  1108. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  1109. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  1110. <PropertyGroup>
  1111. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  1112. </PropertyGroup>
  1113. <Error Condition="!Exists('packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets'))" />
  1114. </Target>
  1115. <Import Project="packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets')" />
  1116. </Project>