PDF Master.csproj 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676
  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_Master</RootNamespace>
  11. <AssemblyName>PDF Master</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. <IsWebBootstrapper>false</IsWebBootstrapper>
  21. <PublishUrl>publish\</PublishUrl>
  22. <Install>true</Install>
  23. <InstallFrom>Disk</InstallFrom>
  24. <UpdateEnabled>false</UpdateEnabled>
  25. <UpdateMode>Foreground</UpdateMode>
  26. <UpdateInterval>7</UpdateInterval>
  27. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  28. <UpdatePeriodically>false</UpdatePeriodically>
  29. <UpdateRequired>false</UpdateRequired>
  30. <MapFileExtensions>true</MapFileExtensions>
  31. <ApplicationRevision>0</ApplicationRevision>
  32. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  33. <UseApplicationTrust>false</UseApplicationTrust>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. <TargetFrameworkProfile />
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  38. <PlatformTarget>x64</PlatformTarget>
  39. <DebugSymbols>true</DebugSymbols>
  40. <DebugType>embedded</DebugType>
  41. <Optimize>false</Optimize>
  42. <OutputPath>bin\Debug\</OutputPath>
  43. <DefineConstants>DEBUG;TRACE</DefineConstants>
  44. <ErrorReport>prompt</ErrorReport>
  45. <WarningLevel>4</WarningLevel>
  46. <Prefer32Bit>false</Prefer32Bit>
  47. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  48. <DocumentationFile>
  49. </DocumentationFile>
  50. </PropertyGroup>
  51. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  52. <PlatformTarget>AnyCPU</PlatformTarget>
  53. <DebugType>none</DebugType>
  54. <Optimize>true</Optimize>
  55. <OutputPath>bin\Release\</OutputPath>
  56. <DefineConstants>TRACE</DefineConstants>
  57. <ErrorReport>prompt</ErrorReport>
  58. <WarningLevel>4</WarningLevel>
  59. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  60. <Prefer32Bit>false</Prefer32Bit>
  61. </PropertyGroup>
  62. <PropertyGroup Label="MultilingualAppToolkit">
  63. <MultilingualAppToolkitVersion>4.0</MultilingualAppToolkitVersion>
  64. <MultilingualFallbackLanguage>en-US</MultilingualFallbackLanguage>
  65. <TranslationReport Condition="'$(Configuration)' == 'Release'">true</TranslationReport>
  66. <SuppressPseudoWarning Condition="'$(Configuration)' == 'Debug'">true</SuppressPseudoWarning>
  67. </PropertyGroup>
  68. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  69. <DebugSymbols>true</DebugSymbols>
  70. <OutputPath>bin\x64\Debug\</OutputPath>
  71. <DefineConstants>DEBUG;TRACE</DefineConstants>
  72. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  73. <DebugType>embedded</DebugType>
  74. <PlatformTarget>x64</PlatformTarget>
  75. <LangVersion>7.3</LangVersion>
  76. <ErrorReport>prompt</ErrorReport>
  77. </PropertyGroup>
  78. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  79. <OutputPath>bin\x64\Release\</OutputPath>
  80. <DefineConstants>TRACE</DefineConstants>
  81. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  82. <Optimize>true</Optimize>
  83. <PlatformTarget>x64</PlatformTarget>
  84. <LangVersion>7.3</LangVersion>
  85. <ErrorReport>prompt</ErrorReport>
  86. </PropertyGroup>
  87. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  88. <DebugSymbols>true</DebugSymbols>
  89. <OutputPath>bin\x86\Debug\</OutputPath>
  90. <DefineConstants>DEBUG;TRACE</DefineConstants>
  91. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  92. <DebugType>embedded</DebugType>
  93. <PlatformTarget>x86</PlatformTarget>
  94. <LangVersion>7.3</LangVersion>
  95. <ErrorReport>prompt</ErrorReport>
  96. </PropertyGroup>
  97. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  98. <OutputPath>bin\x86\Release\</OutputPath>
  99. <DefineConstants>TRACE</DefineConstants>
  100. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  101. <Optimize>true</Optimize>
  102. <PlatformTarget>x86</PlatformTarget>
  103. <LangVersion>7.3</LangVersion>
  104. <ErrorReport>prompt</ErrorReport>
  105. </PropertyGroup>
  106. <PropertyGroup>
  107. <ApplicationIcon>Icon.ico</ApplicationIcon>
  108. </PropertyGroup>
  109. <ItemGroup>
  110. <Reference Include="ComDocumentAIKit, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  111. <SpecificVersion>False</SpecificVersion>
  112. <HintPath>.\ComDocumentAIKit.dll</HintPath>
  113. </Reference>
  114. <Reference Include="ComOCRKit.Desk, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  115. <SpecificVersion>False</SpecificVersion>
  116. <HintPath>.\ComOCRKit.Desk.dll</HintPath>
  117. </Reference>
  118. <Reference Include="ComPDFKit.Desk, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  119. <SpecificVersion>False</SpecificVersion>
  120. <HintPath>.\ComPDFKit.Desk.dll</HintPath>
  121. </Reference>
  122. <Reference Include="ComPDFKit.Viewer, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  123. <SpecificVersion>False</SpecificVersion>
  124. <HintPath>.\ComPDFKit.Viewer.dll</HintPath>
  125. </Reference>
  126. <Reference Include="ComPDFKit_Conversion, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
  127. <SpecificVersion>False</SpecificVersion>
  128. <HintPath>.\ComPDFKit_Conversion.dll</HintPath>
  129. </Reference>
  130. <Reference Include="DotNetSpeech, Version=5.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  131. <SpecificVersion>False</SpecificVersion>
  132. <EmbedInteropTypes>True</EmbedInteropTypes>
  133. <HintPath>.\DotNetSpeech.dll</HintPath>
  134. </Reference>
  135. <Reference Include="Dragablz, Version=0.0.4.0, Culture=neutral, processorArchitecture=MSIL">
  136. <SpecificVersion>False</SpecificVersion>
  137. <HintPath>.\Dragablz.dll</HintPath>
  138. </Reference>
  139. <Reference Include="Dropbox.Api, Version=6.33.0.0, Culture=neutral, PublicKeyToken=310f0e82fbb45d01, processorArchitecture=MSIL">
  140. <HintPath>packages\Dropbox.Api.6.33.0\lib\netstandard2.0\Dropbox.Api.dll</HintPath>
  141. </Reference>
  142. <Reference Include="DryIoc, Version=4.7.7.0, Culture=neutral, PublicKeyToken=dfbf2bd50fcf7768, processorArchitecture=MSIL">
  143. <HintPath>packages\DryIoc.dll.4.7.7\lib\net45\DryIoc.dll</HintPath>
  144. </Reference>
  145. <Reference Include="Google.Apis, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  146. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.dll</HintPath>
  147. </Reference>
  148. <Reference Include="Google.Apis.Auth, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  149. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.dll</HintPath>
  150. </Reference>
  151. <Reference Include="Google.Apis.Auth.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  152. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.PlatformServices.dll</HintPath>
  153. </Reference>
  154. <Reference Include="Google.Apis.Core, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  155. <HintPath>packages\Google.Apis.Core.1.57.0\lib\net45\Google.Apis.Core.dll</HintPath>
  156. </Reference>
  157. <Reference Include="Google.Apis.Drive.v3, Version=1.57.0.2859, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  158. <HintPath>packages\Google.Apis.Drive.v3.1.57.0.2859\lib\net45\Google.Apis.Drive.v3.dll</HintPath>
  159. </Reference>
  160. <Reference Include="Google.Apis.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  161. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.PlatformServices.dll</HintPath>
  162. </Reference>
  163. <Reference Include="Interop.WIA">
  164. <HintPath>.\Interop.WIA.dll</HintPath>
  165. <EmbedInteropTypes>True</EmbedInteropTypes>
  166. </Reference>
  167. <Reference Include="Magick.NET-Q16-AnyCPU, Version=12.2.0.0, Culture=neutral, PublicKeyToken=2004825badfa91ec, processorArchitecture=MSIL">
  168. <HintPath>packages\Magick.NET-Q16-AnyCPU.12.2.2\lib\netstandard20\Magick.NET-Q16-AnyCPU.dll</HintPath>
  169. </Reference>
  170. <Reference Include="Magick.NET.Core, Version=12.2.0.0, Culture=neutral, PublicKeyToken=2004825badfa91ec, processorArchitecture=MSIL">
  171. <HintPath>packages\Magick.NET.Core.12.2.2\lib\netstandard20\Magick.NET.Core.dll</HintPath>
  172. </Reference>
  173. <Reference Include="Microsoft.AppCenter, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  174. <HintPath>packages\Microsoft.AppCenter.4.5.0\lib\net461\Microsoft.AppCenter.dll</HintPath>
  175. </Reference>
  176. <Reference Include="Microsoft.AppCenter.Analytics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  177. <HintPath>packages\Microsoft.AppCenter.Analytics.4.5.0\lib\net461\Microsoft.AppCenter.Analytics.dll</HintPath>
  178. </Reference>
  179. <Reference Include="Microsoft.AppCenter.Crashes, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  180. <HintPath>packages\Microsoft.AppCenter.Crashes.4.5.0\lib\net461\Microsoft.AppCenter.Crashes.dll</HintPath>
  181. </Reference>
  182. <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  183. <HintPath>packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
  184. <EmbedInteropTypes>True</EmbedInteropTypes>
  185. </Reference>
  186. <Reference Include="Microsoft.Office.Interop.PowerPoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  187. <HintPath>packages\Microsoft.Office.Interop.PowerPoint.15.0.4420.1018\lib\net20\Microsoft.Office.Interop.PowerPoint.dll</HintPath>
  188. <EmbedInteropTypes>True</EmbedInteropTypes>
  189. </Reference>
  190. <Reference Include="Microsoft.Office.Interop.Word, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  191. <HintPath>packages\Microsoft.Office.Interop.Word.15.0.4797.1004\lib\net20\Microsoft.Office.Interop.Word.dll</HintPath>
  192. <EmbedInteropTypes>True</EmbedInteropTypes>
  193. </Reference>
  194. <Reference Include="Microsoft.Xaml.Behaviors, Version=1.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  195. <HintPath>packages\Microsoft.Xaml.Behaviors.Wpf.1.1.31\lib\net45\Microsoft.Xaml.Behaviors.dll</HintPath>
  196. </Reference>
  197. <Reference Include="NetSparkle, Version=2.0.8.0, Culture=neutral, processorArchitecture=MSIL">
  198. <SpecificVersion>False</SpecificVersion>
  199. <HintPath>Updater\NetSparkle.dll</HintPath>
  200. </Reference>
  201. <Reference Include="NetSparkleUpdater.UI.WinForms, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  202. <SpecificVersion>False</SpecificVersion>
  203. <HintPath>Updater\NetSparkleUpdater.UI.WinForms.dll</HintPath>
  204. </Reference>
  205. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  206. <HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  207. </Reference>
  208. <Reference Include="NTwain, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  209. <HintPath>packages\NTwain.3.7.2\lib\net462\NTwain.dll</HintPath>
  210. </Reference>
  211. <Reference Include="office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
  212. <EmbedInteropTypes>True</EmbedInteropTypes>
  213. </Reference>
  214. <Reference Include="PresentationFramework.Aero2" />
  215. <Reference Include="Prism, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  216. <HintPath>packages\Prism.Core.8.1.97\lib\net461\Prism.dll</HintPath>
  217. </Reference>
  218. <Reference Include="Prism.DryIoc.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  219. <HintPath>packages\Prism.DryIoc.8.1.97\lib\net461\Prism.DryIoc.Wpf.dll</HintPath>
  220. </Reference>
  221. <Reference Include="Prism.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  222. <HintPath>packages\Prism.Wpf.8.1.97\lib\net461\Prism.Wpf.dll</HintPath>
  223. </Reference>
  224. <Reference Include="ReachFramework" />
  225. <Reference Include="SQLitePCLRaw.batteries_v2, Version=2.0.2.669, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL">
  226. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.batteries_v2.dll</HintPath>
  227. </Reference>
  228. <Reference Include="SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL">
  229. <HintPath>packages\SQLitePCLRaw.core.2.0.2\lib\netstandard2.0\SQLitePCLRaw.core.dll</HintPath>
  230. </Reference>
  231. <Reference Include="SQLitePCLRaw.nativelibrary, Version=2.0.2.669, Culture=neutral, PublicKeyToken=502ed628492ab262, processorArchitecture=MSIL">
  232. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.nativelibrary.dll</HintPath>
  233. </Reference>
  234. <Reference Include="SQLitePCLRaw.provider.dynamic_cdecl, Version=2.0.2.669, Culture=neutral, PublicKeyToken=b68184102cba0b3b, processorArchitecture=MSIL">
  235. <HintPath>packages\SQLitePCLRaw.provider.dynamic_cdecl.2.0.2\lib\netstandard2.0\SQLitePCLRaw.provider.dynamic_cdecl.dll</HintPath>
  236. </Reference>
  237. <Reference Include="System" />
  238. <Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  239. <HintPath>packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
  240. </Reference>
  241. <Reference Include="System.Configuration" />
  242. <Reference Include="System.Data" />
  243. <Reference Include="System.Deployment" />
  244. <Reference Include="System.Drawing" />
  245. <Reference Include="System.IO.Compression.FileSystem" />
  246. <Reference Include="System.Management" />
  247. <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  248. <HintPath>packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
  249. </Reference>
  250. <Reference Include="System.Numerics" />
  251. <Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  252. <HintPath>packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
  253. </Reference>
  254. <Reference Include="System.Printing" />
  255. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  256. <HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  257. </Reference>
  258. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  259. <HintPath>packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  260. </Reference>
  261. <Reference Include="System.Windows.Forms" />
  262. <Reference Include="System.Xml" />
  263. <Reference Include="Microsoft.CSharp" />
  264. <Reference Include="System.Core" />
  265. <Reference Include="System.Xml.Linq" />
  266. <Reference Include="System.Data.DataSetExtensions" />
  267. <Reference Include="System.Net.Http" />
  268. <Reference Include="System.Xaml">
  269. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  270. </Reference>
  271. <Reference Include="VirtualizingWrapPanel, Version=1.5.7.0, Culture=neutral, processorArchitecture=MSIL">
  272. <SpecificVersion>False</SpecificVersion>
  273. <HintPath>packages\VirtualizingWrapPanel.1.5.7\lib\net452\VirtualizingWrapPanel.dll</HintPath>
  274. </Reference>
  275. <Reference Include="WindowsBase" />
  276. <Reference Include="PresentationCore" />
  277. <Reference Include="PresentationFramework" />
  278. </ItemGroup>
  279. <ItemGroup>
  280. <ApplicationDefinition Include="App.xaml">
  281. <Generator>MSBuild:Compile</Generator>
  282. <SubType>Designer</SubType>
  283. </ApplicationDefinition>
  284. <Compile Include="CustomControl\AlertsMessage.xaml.cs">
  285. <DependentUpon>AlertsMessage.xaml</DependentUpon>
  286. </Compile>
  287. <Compile Include="CustomControl\BatchStatus.xaml.cs">
  288. <DependentUpon>BatchStatus.xaml</DependentUpon>
  289. </Compile>
  290. <Compile Include="CustomControl\ColorDropBox.xaml.cs">
  291. <DependentUpon>ColorDropBox.xaml</DependentUpon>
  292. </Compile>
  293. <Compile Include="CustomControl\ColorDropBoxPop.xaml.cs">
  294. <DependentUpon>ColorDropBoxPop.xaml</DependentUpon>
  295. </Compile>
  296. <Compile Include="CustomControl\CommonWritableComboBox.xaml.cs">
  297. <DependentUpon>CommonWritableComboBox.xaml</DependentUpon>
  298. </Compile>
  299. <Compile Include="CustomControl\CompositeControl\ColorMenuItem.xaml.cs">
  300. <DependentUpon>ColorMenuItem.xaml</DependentUpon>
  301. </Compile>
  302. <Compile Include="CustomControl\CompositeControl\ColorSubContent.xaml.cs">
  303. <DependentUpon>ColorSubContent.xaml</DependentUpon>
  304. </Compile>
  305. <Compile Include="CustomControl\CompositeControl\CustomComboControl.xaml.cs">
  306. <DependentUpon>CustomComboControl.xaml</DependentUpon>
  307. </Compile>
  308. <Compile Include="CustomControl\CompositeControl\SlidComboControl.xaml.cs">
  309. <DependentUpon>SlidComboControl.xaml</DependentUpon>
  310. </Compile>
  311. <Compile Include="CustomControl\CustomIconToggleBtn.cs" />
  312. <Compile Include="CustomControl\CustomImageControl.cs" />
  313. <Compile Include="CustomControl\DialogContent.cs" />
  314. <Compile Include="CustomControl\DialogWindow.cs" />
  315. <Compile Include="CustomControl\Form\FormFieldCombox.xaml.cs">
  316. <DependentUpon>FormFieldCombox.xaml</DependentUpon>
  317. </Compile>
  318. <Compile Include="CustomControl\Form\LayoutAglinContent.xaml.cs">
  319. <DependentUpon>LayoutAglinContent.xaml</DependentUpon>
  320. </Compile>
  321. <Compile Include="CustomControl\IconAndTextTabItem.cs" />
  322. <Compile Include="CustomControl\ImageButton.cs" />
  323. <Compile Include="CustomControl\ImageRadioButton .cs" />
  324. <Compile Include="CustomControl\ListBoxItemToolBar.cs" />
  325. <Compile Include="CustomControl\MenuItemWithPath.cs" />
  326. <Compile Include="CustomControl\MessageBoxEx.cs" />
  327. <Compile Include="CustomControl\NumericUpDown.xaml.cs">
  328. <DependentUpon>NumericUpDown.xaml</DependentUpon>
  329. </Compile>
  330. <Compile Include="CustomControl\PageControl.xaml.cs">
  331. <DependentUpon>PageControl.xaml</DependentUpon>
  332. </Compile>
  333. <Compile Include="CustomControl\PageTurningPreview.xaml.cs">
  334. <DependentUpon>PageTurningPreview.xaml</DependentUpon>
  335. </Compile>
  336. <Compile Include="CustomControl\PaginationControl.xaml.cs">
  337. <DependentUpon>PaginationControl.xaml</DependentUpon>
  338. </Compile>
  339. <Compile Include="CustomControl\PathButton.cs" />
  340. <Compile Include="CustomControl\PathRadioButton.cs" />
  341. <Compile Include="CustomControl\ScanViewControl\CustomDraw.cs" />
  342. <Compile Include="CustomControl\ScanViewControl\CustomPanel.cs" />
  343. <Compile Include="CustomControl\ScanViewControl\DrawRect.cs" />
  344. <Compile Include="CustomControl\SystemControl\CustomCommandAction .cs" />
  345. <Compile Include="CustomControl\SystemControl\RoutedEventTrigger.cs" />
  346. <Compile Include="CustomControl\TextBoxEx.cs" />
  347. <Compile Include="CustomControl\TextBoxWithTip.xaml.cs">
  348. <DependentUpon>TextBoxWithTip.xaml</DependentUpon>
  349. </Compile>
  350. <Compile Include="CustomControl\ToastControl.xaml.cs">
  351. <DependentUpon>ToastControl.xaml</DependentUpon>
  352. </Compile>
  353. <Compile Include="CustomControl\WritableComboBox.xaml.cs">
  354. <DependentUpon>WritableComboBox.xaml</DependentUpon>
  355. </Compile>
  356. <Compile Include="DataConvert\AnnotateFontSizeConverter.cs" />
  357. <Compile Include="DataConvert\BoolToBrushConvert.cs" />
  358. <Compile Include="DataConvert\BoolToTextWrapConvert.cs" />
  359. <Compile Include="DataConvert\CenterToolTipConverter .cs" />
  360. <Compile Include="DataConvert\ColorBrushConvert.cs" />
  361. <Compile Include="DataConvert\CreateTimeToDate.cs" />
  362. <Compile Include="DataConvert\FileFormatToIconConvert.cs" />
  363. <Compile Include="DataConvert\GroupHeaderConverter.cs" />
  364. <Compile Include="DataConvert\IAPConvert.cs" />
  365. <Compile Include="DataConvert\IndexConverter .cs" />
  366. <Compile Include="DataConvert\IntToBooleanConvert.cs" />
  367. <Compile Include="DataConvert\FileToImageSourceConvert.cs" />
  368. <Compile Include="DataConvert\IntAndTagToBoolMultiBinding.cs" />
  369. <Compile Include="DataConvert\IntToColorBrush.cs" />
  370. <Compile Include="DataConvert\InvertBoolConvert.cs" />
  371. <Compile Include="DataConvert\ListCountToVisible.cs.cs" />
  372. <Compile Include="DataConvert\LoginBordVis.cs" />
  373. <Compile Include="DataConvert\ObjectConvert.cs" />
  374. <Compile Include="DataConvert\PropertyPanelVisible.cs" />
  375. <Compile Include="DataConvert\SignatureButtonConvert.cs" />
  376. <Compile Include="DataConvert\StringToDateConvert.cs" />
  377. <Compile Include="DataConvert\StringToVisibleConvert.cs" />
  378. <Compile Include="DataConvert\TextAlignToCheckedConverter.cs" />
  379. <Compile Include="DataConvert\UnVisivleConvert.cs" />
  380. <Compile Include="DataConvert\WidthConvert.cs" />
  381. <Compile Include="EventAggregators\AddBookMarkEvent.cs" />
  382. <Compile Include="EventAggregators\CleanSelectAllEvent.cs" />
  383. <Compile Include="EventAggregators\EditToolsEvent.cs" />
  384. <Compile Include="EventAggregators\FillAndSignEvent.cs" />
  385. <Compile Include="EventAggregators\LinkAnnotTipCloseEvent.cs" />
  386. <Compile Include="EventAggregators\PageEditNotifyEvent.cs" />
  387. <Compile Include="EventAggregators\PageEditRefreshEvent.cs" />
  388. <Compile Include="EventAggregators\RedactionCommandEvent.cs" />
  389. <Compile Include="EventAggregators\RefreshAnnotationEvent.cs" />
  390. <Compile Include="EventAggregators\RefreshAnnotEvent.cs" />
  391. <Compile Include="EventAggregators\ScanEvent.cs" />
  392. <Compile Include="EventAggregators\SendPrintInfoEvent.cs" />
  393. <Compile Include="EventAggregators\ShowTipEvent.cs" />
  394. <Compile Include="EventAggregators\SplitEvent.cs" />
  395. <Compile Include="EventAggregators\StickyNoteEvent.cs" />
  396. <Compile Include="EventAggregators\ViewContentEvent.cs" />
  397. <Compile Include="Helper\ADServiceHelper.cs" />
  398. <Compile Include="Helper\CacheFilePath.cs" />
  399. <Compile Include="Helper\ConverterHelper.cs" />
  400. <Compile Include="Helper\CropPageUndoManager.cs" />
  401. <Compile Include="Helper\ErrorCodeHelper.cs" />
  402. <Compile Include="Helper\GlobalCommands.cs" />
  403. <Compile Include="Helper\KeyEventsHelper.cs" />
  404. <Compile Include="Helper\Win32Helper.cs" />
  405. <Compile Include="Helper\DpiHelpers.cs" />
  406. <Compile Include="Helper\EditToolsHelper.cs" />
  407. <Compile Include="Helper\AdvancedInvokeCommandAction.cs" />
  408. <Compile Include="Helper\ArrowHelper.cs" />
  409. <Compile Include="Helper\DragDropHelper.cs" />
  410. <Compile Include="Helper\HomePageEditHelper.cs" />
  411. <Compile Include="Helper\ObservableDictionary.cs" />
  412. <Compile Include="Helper\PasswordBoxHelper.cs" />
  413. <Compile Include="Helper\PopControlHelper.cs" />
  414. <Compile Include="Helper\RichTextBoxHelper.cs" />
  415. <Compile Include="Helper\SDKLisenceHelper.cs" />
  416. <Compile Include="Helper\PictureConverter.cs" />
  417. <Compile Include="Helper\SecurityHelper.cs" />
  418. <Compile Include="Helper\ServiceHelper.cs" />
  419. <Compile Include="Helper\SetterAction.cs" />
  420. <Compile Include="Helper\SettingHelper.cs" />
  421. <Compile Include="Helper\ToolMethod.cs" />
  422. <Compile Include="Helper\UpdateAttributeHelper.cs" />
  423. <Compile Include="Model\AnnotPanel\AnnotColorList.cs" />
  424. <Compile Include="Model\AnnotPanel\AnnotCommon.cs" />
  425. <Compile Include="Model\AnnotPanel\FontBoard.cs" />
  426. <Compile Include="Model\AnnotPanel\Signature.cs" />
  427. <Compile Include="Model\BOTA\AnnotationHandlerEventArgs.cs" />
  428. <Compile Include="Model\AnnotPanel\Stamp.cs" />
  429. <Compile Include="Model\BOTA\AnnotationSortOrder.cs" />
  430. <Compile Include="Model\BOTA\AuthorItem.cs" />
  431. <Compile Include="Model\BOTA\OutlineNode.cs" />
  432. <Compile Include="Model\BOTA\SearchItem.cs" />
  433. <Compile Include="Model\CloudDrive\CloudDriveItem.cs" />
  434. <Compile Include="Model\CloudDrive\CloudFiles.cs" />
  435. <Compile Include="Model\DialogNames.cs" />
  436. <Compile Include="CustomControl\SystemControl\InterTabClient.cs" />
  437. <Compile Include="CustomControl\LoadingControl.xaml.cs">
  438. <DependentUpon>LoadingControl.xaml</DependentUpon>
  439. </Compile>
  440. <Compile Include="Model\Dialog\ConverterDialogs\ConverterCSVDialogModel.cs" />
  441. <Compile Include="Model\Dialog\ConverterDialogs\ConverterDialogsModel.cs" />
  442. <Compile Include="Model\Dialog\ConverterDialogs\ConverterExcelDialogModel.cs" />
  443. <Compile Include="Model\Dialog\ConverterDialogs\ConverterHTMLDialogModel.cs" />
  444. <Compile Include="Model\Dialog\ConverterDialogs\ConverterImgDialogModel.cs" />
  445. <Compile Include="Model\Dialog\ConverterDialogs\ConverterPPTDialogModel.cs" />
  446. <Compile Include="Model\Dialog\ConverterDialogs\ConverterRTFDialogModel.cs" />
  447. <Compile Include="Model\Dialog\ConverterDialogs\ConverterTextDialogModel.cs" />
  448. <Compile Include="Model\Dialog\ConverterDialogs\ConverterWordDialogModel.cs" />
  449. <Compile Include="Model\Dialog\GuidItemModel.cs" />
  450. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogModel.cs" />
  451. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogModel.cs" />
  452. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVModel.cs" />
  453. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogModel.cs" />
  454. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelModel.cs" />
  455. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterHTMLModel.cs" />
  456. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgModel.cs" />
  457. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterPPTModel.cs" />
  458. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterRTFModel.cs" />
  459. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterTextModel.cs" />
  460. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordModel.cs" />
  461. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogModel.cs" />
  462. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogModel.cs" />
  463. <Compile Include="Model\Dialog\HomePageToolsDialogs\HtmlModel.cs" />
  464. <Compile Include="Model\Dialog\ToolsDialogs\CompressDialogModel\CompressDialogModel.cs" />
  465. <Compile Include="Model\Dialog\ToolsDialogs\MergeObject.cs" />
  466. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogModel.cs" />
  467. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettintgsModel.cs" />
  468. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogModel.cs" />
  469. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageExtractDialogModel.cs" />
  470. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageInsertDialogModel.cs" />
  471. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogModel.cs" />
  472. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageSplitDialogModel.cs" />
  473. <Compile Include="Model\EditTools\Background\BackgroundCreateModel.cs" />
  474. <Compile Include="Model\EditTools\Background\BackgroundTemplateListModel.cs" />
  475. <Compile Include="Model\EditTools\Bates\BatesCreateModel.cs" />
  476. <Compile Include="Model\EditTools\HeaderFooter\HeaderFooterCreateModel.cs" />
  477. <Compile Include="Model\EditTools\Watermark\WatermarkCreateModel.cs" />
  478. <Compile Include="Model\EditTools\Watermark\WatermarkTemplateListModel.cs" />
  479. <Compile Include="Model\FillAndSign\FillAndSignContentModel.cs" />
  480. <Compile Include="Model\From\FormFieldType.cs" />
  481. <Compile Include="Model\PageEdit\CustomInsertModel.cs" />
  482. <Compile Include="Model\PageEdit\CustomPageItem.cs" />
  483. <Compile Include="Model\PageEdit\ExtractModel.cs" />
  484. <Compile Include="Model\PageEdit\PageEditHistory.cs" />
  485. <Compile Include="Model\PageEdit\PageEditItem.cs" />
  486. <Compile Include="Model\PageEdit\PageItemUnits.cs" />
  487. <Compile Include="Model\ParameterNames.cs" />
  488. <Compile Include="Model\PDFTool\ToolItem.cs" />
  489. <Compile Include="Model\PropertyPanel\AnnotPanel\FontStyleItem.cs" />
  490. <Compile Include="Model\RegionNames.cs" />
  491. <Compile Include="CustomControl\SystemControl\TabablzRegionBehavior.cs" />
  492. <Compile Include="DataConvert\BoolToVisible.cs" />
  493. <Compile Include="DataConvert\VisibleToBoolConvert.cs" />
  494. <Compile Include="EventAggregators\DragablzWindowEvent.cs" />
  495. <Compile Include="EventAggregators\OpenFileEvent.cs" />
  496. <Compile Include="Helper\CommonHelper.cs" />
  497. <Compile Include="Model\SettingsDialog\AnnotateModel.cs" />
  498. <Compile Include="Model\SettingsDialog\DescriptionModel.cs" />
  499. <Compile Include="Model\SettingsDialog\InitialVIewModel.cs" />
  500. <Compile Include="Properties\Resources.Designer.cs">
  501. <DependentUpon>Resources.resx</DependentUpon>
  502. <DesignTime>True</DesignTime>
  503. <AutoGen>True</AutoGen>
  504. </Compile>
  505. <Compile Include="Settings.cs" />
  506. <Compile Include="Strings\HomePage\HomePage.Designer.cs">
  507. <AutoGen>True</AutoGen>
  508. <DesignTime>True</DesignTime>
  509. <DependentUpon>HomePage.resx</DependentUpon>
  510. </Compile>
  511. <Compile Include="Strings\MainPage\MainPage.Designer.cs">
  512. <AutoGen>True</AutoGen>
  513. <DesignTime>True</DesignTime>
  514. <DependentUpon>MainPage.resx</DependentUpon>
  515. </Compile>
  516. <Compile Include="Strings\Service\Service.Designer.cs">
  517. <AutoGen>True</AutoGen>
  518. <DesignTime>True</DesignTime>
  519. <DependentUpon>Service.resx</DependentUpon>
  520. </Compile>
  521. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\CreateFromHtmlDialogViewModel.cs" />
  522. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\CreateFromScannerDialogsViewModel.cs" />
  523. <Compile Include="ViewModels\Dialog\NoviceGuidDialogViewModel.cs" />
  524. <Compile Include="ViewModels\Dialog\PropertiesDialogViewModel.cs" />
  525. <Compile Include="ViewModels\Dialog\Redaction\MarkSettingDialogViewModel.cs" />
  526. <Compile Include="ViewModels\Dialog\Redaction\PageMarkDialogViewModel.cs" />
  527. <Compile Include="ViewModels\Dialog\Redaction\RepeatMarkDialogViewModel.cs" />
  528. <Compile Include="ViewModels\Dialog\ServiceDialog\CodeRegionViewModel.cs" />
  529. <Compile Include="ViewModels\Dialog\ServiceDialog\IAPCompareDialogViewModel.cs" />
  530. <Compile Include="ViewModels\Dialog\ServiceDialog\LoginDialogViewModel.cs" />
  531. <Compile Include="ViewModels\Dialog\ServiceDialog\LoginPasswordRegionViewModel.cs" />
  532. <Compile Include="ViewModels\Dialog\ServiceDialog\LoginRegionViewModel.cs" />
  533. <Compile Include="ViewModels\Dialog\ServiceDialog\NoInternetRegionViewModel.cs" />
  534. <Compile Include="ViewModels\Dialog\ServiceDialog\PasswordUpdataRegionVIewModel.cs" />
  535. <Compile Include="ViewModels\Dialog\ServiceDialog\RegisterDialogViewModel.cs" />
  536. <Compile Include="ViewModels\Dialog\ServiceDialog\RegisterOKRegionViewModel.cs" />
  537. <Compile Include="ViewModels\Dialog\ServiceDialog\RegisterRegionViewModel.cs" />
  538. <Compile Include="ViewModels\Dialog\ServiceDialog\UserDialogViewModel.cs" />
  539. <Compile Include="ViewModels\Dialog\ServiceDialog\UserOutCodeRegionViewModel.cs" />
  540. <Compile Include="ViewModels\Dialog\ServiceDialog\UserOutingLoginViewModel.cs" />
  541. <Compile Include="ViewModels\Dialog\ServiceDialog\UserOutOKRegionViewModel.cs" />
  542. <Compile Include="ViewModels\Dialog\SettingsDialogViewModel.cs" />
  543. <Compile Include="ViewModels\Dialog\ToolsDialogs\MergeDialogViewModel.cs" />
  544. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageRemoveDialogViewModel.cs" />
  545. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDocumentContentViewModel.cs" />
  546. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPaperSettingsDialogViewModel.cs" />
  547. <Compile Include="ViewModels\EditTools\Bates\BatesContentViewModel.cs" />
  548. <Compile Include="ViewModels\EditTools\Bates\BatesCreateContentViewModel.cs" />
  549. <Compile Include="ViewModels\EditTools\Bates\BatesDocumentContentViewModel.cs" />
  550. <Compile Include="ViewModels\EditTools\Bates\BatesTemplateListContentViewModel.cs" />
  551. <Compile Include="ViewModels\BOTA\AnnotationContentViewModel.cs" />
  552. <Compile Include="ViewModels\BOTA\BookmarkContentViewModel.cs" />
  553. <Compile Include="ViewModels\Dialog\BOTA\AddAnnotationDialogViewModel.cs" />
  554. <Compile Include="ViewModels\BOTA\OutLineControlViewModel.cs" />
  555. <Compile Include="ViewModels\BOTA\SearchContentViewModel.cs" />
  556. <Compile Include="ViewModels\Dialog\BOTA\AddBookmarkDialogViewModel.cs" />
  557. <Compile Include="ViewModels\Dialog\BOTA\BookmarkInfoDialogViewModel.cs" />
  558. <Compile Include="ViewModels\Dialog\BOTA\ScreenAnnotationDialogViewModel.cs" />
  559. <Compile Include="ViewModels\EditTools\Background\BackgroundContentViewModel.cs" />
  560. <Compile Include="ViewModels\BOTA\BOTAContentViewModel.cs" />
  561. <Compile Include="ViewModels\BottomToolContentViewModel.cs" />
  562. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterProgressBarDialogViewModel.cs" />
  563. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterCSVDialogViewModel.cs" />
  564. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterExcelDialogViewModel.cs" />
  565. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterHTMLDialogViewModel.cs" />
  566. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterImgDialogViewModel.cs" />
  567. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterPPTDialogViewModel.cs" />
  568. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterRTFDialogViewModel.cs" />
  569. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterTextDialogViewModel.cs" />
  570. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterWordDialogViewModel.cs" />
  571. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogViewModel.cs" />
  572. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVViewModel.cs" />
  573. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelViewModel.cs" />
  574. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgViewModel.cs" />
  575. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordViewModel.cs" />
  576. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateBaseContentViewModel.cs" />
  577. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateColorContentViewModel.cs" />
  578. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateFileContentViewModel.cs" />
  579. <Compile Include="ViewModels\EditTools\Background\BackgroundDocumentContentViewModel.cs" />
  580. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListBaseContentViewModel.cs" />
  581. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListColorContentViewModel.cs" />
  582. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListFileContentViewModel.cs" />
  583. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterContentViewModel.cs" />
  584. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterCreateContentViewModel.cs" />
  585. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterDocumentContentViewModel.cs" />
  586. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterTemplateListContentViewModel.cs" />
  587. <Compile Include="ViewModels\EditTools\Redaction\RedactionContentViewModel.cs" />
  588. <Compile Include="ViewModels\Form\ButtonPropertyViewModel.cs" />
  589. <Compile Include="ViewModels\Form\CheckBoxPropertyViewModel.cs" />
  590. <Compile Include="ViewModels\Form\ComboxPropertyViewModel.cs" />
  591. <Compile Include="ViewModels\Form\EditPresetColorsDialogViewModel.cs" />
  592. <Compile Include="ViewModels\Form\FormBaseVM.cs" />
  593. <Compile Include="ViewModels\Form\FormsToolContentViewModel.cs" />
  594. <Compile Include="ViewModels\Form\ListBoxPropertyViewModel.cs" />
  595. <Compile Include="ViewModels\Form\RadioButtonPropertyViewModel.cs" />
  596. <Compile Include="ViewModels\Form\SignPropertyViewModel.cs" />
  597. <Compile Include="ViewModels\Form\TextFieldPropertyViewModel.cs" />
  598. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundDialogViewModel.cs" />
  599. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesDialogViewModel.cs" />
  600. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterDialogViewModel.cs" />
  601. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkDialogViewModel.cs" />
  602. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterCreateContentViewModel.cs" />
  603. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterTemplateListContentViewModel.cs" />
  604. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesCreateContentViewModel.cs" />
  605. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesTemplateListContentViewModel.cs" />
  606. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateBaseContentViewModel.cs" />
  607. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateColorContentViewModel.cs" />
  608. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateFileContentViewModel.cs" />
  609. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListBaseContentViewModel.cs" />
  610. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListColorContentViewModel.cs" />
  611. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListFileContentViewModel.cs" />
  612. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateBaseContentViewModel.cs" />
  613. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateFileContentViewModel.cs" />
  614. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateTextContentViewModel.cs" />
  615. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListBaseContentViewModel.cs" />
  616. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListFileContentViewModel.cs" />
  617. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListTextContentViewModel.cs" />
  618. <Compile Include="ViewModels\HomePanel\PDFTools\PDFToolsContentViewModel.cs" />
  619. <Compile Include="ViewModels\HomePanel\PDFTools\QuickToolsContentViewModel.cs" />
  620. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SignatureAnnotPropertyViewModel.cs" />
  621. <Compile Include="ViewModels\Dialog\SignatureCreateDialogViewModel.cs" />
  622. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SnapshotEditMenuViewModel.cs" />
  623. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\StickyNotePopupViewModel.cs" />
  624. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\StickyNotePropertyViewModel.cs" />
  625. <Compile Include="ViewModels\PropertyPanel\PDFEdit\ImageEditPropertyViewModel.cs" />
  626. <Compile Include="ViewModels\PropertyPanel\PDFEdit\ImageTextEditPropertyViewModel.cs" />
  627. <Compile Include="ViewModels\PropertyPanel\PDFEdit\PDFEditVM.cs" />
  628. <Compile Include="ViewModels\PropertyPanel\PDFEdit\TextEditPropertyViewModel.cs" />
  629. <Compile Include="ViewModels\PropertyPanel\Scan\ScanPropertyPanelViewModel.cs" />
  630. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadViewContentViewModel.cs" />
  631. <Compile Include="ViewModels\HomePanel\RecentFiles\RecentFilesContentViewModel.cs" />
  632. <Compile Include="ViewModels\Dialog\CustomCreateDialogViewModel.cs" />
  633. <Compile Include="ViewModels\Dialog\DynamicPropertyDialogViewModel.cs" />
  634. <Compile Include="ViewModels\PropertyPanel\ViewModular\PageContentViewModel.cs" />
  635. <Compile Include="ViewModels\Scan\ScanViwerViewModel.cs" />
  636. <Compile Include="ViewModels\TipContent\FileRestrictedTipViewModel.cs" />
  637. <Compile Include="ViewModels\TipContent\LinkAnnotTipViewModel.cs" />
  638. <Compile Include="ViewModels\TipContent\RemoveSecuritySuccessTipViewModel.cs" />
  639. <Compile Include="ViewModels\TipContent\SetPasswordSuccessfullyTipViewModel.cs" />
  640. <Compile Include="ViewModels\Tools\AnnotManager\AnnotTransfer.cs" />
  641. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Command.cs" />
  642. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Layout.cs" />
  643. <Compile Include="ViewModels\Tools\ConverterBarContentViewModel.cs" />
  644. <Compile Include="ViewModels\Dialog\ExtractDialogViewModel.cs" />
  645. <Compile Include="ViewModels\Dialog\FullScreenWindowViewModel.cs" />
  646. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogViewModel.cs" />
  647. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogViewModel.cs" />
  648. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogViewModel.cs" />
  649. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContentViewModel.cs" />
  650. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContentViewModel.cs" />
  651. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContentViewModel.cs" />
  652. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContentViewModel.cs" />
  653. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageSplitDialogViewModel.cs" />
  654. <Compile Include="ViewModels\Dialog\PageEditDialogs\ExtractDialogViewModel.cs" />
  655. <Compile Include="ViewModels\Dialog\PageEditDialogs\InsertDialogViewModel.cs" />
  656. <Compile Include="ViewModels\Dialog\PageEditDialogs\SplitDialogViewModel.cs" />
  657. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogViewModel.cs" />
  658. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressDialogViewModel.cs" />
  659. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialogViewModel.cs" />
  660. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialogViewModel.cs" />
  661. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogViewModel.cs" />
  662. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogViewModel.cs" />
  663. <Compile Include="ViewModels\Dialog\VerifyPassWordDialogViewModel.cs" />
  664. <Compile Include="ViewModels\FillAndSign\FillAndSignContentViewModel.cs" />
  665. <Compile Include="ViewModels\FillAndSign\PropertyPanel\DateFillPropertyViewModel.cs" />
  666. <Compile Include="ViewModels\FillAndSign\PropertyPanel\ShapFillPropertyViewModel.cs" />
  667. <Compile Include="ViewModels\FillAndSign\PropertyPanel\TextFillPropertyViewModel.cs" />
  668. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveContentViewModel.cs" />
  669. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveManager.cs" />
  670. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudFilesContentViewModel.cs" />
  671. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxManager.cs" />
  672. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxUserItem.cs" />
  673. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveManager.cs" />
  674. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveUserItem.cs" />
  675. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogViewModel.cs" />
  676. <Compile Include="ViewModels\HomePanel\HomeCloudContentViewModel.cs" />
  677. <Compile Include="ViewModels\HomePanel\HomeGuidContentViewModel.cs" />
  678. <Compile Include="ViewModels\HomePanel\HomeToolsContentViewModel.cs" />
  679. <Compile Include="ViewModels\MainContentViewModel.cs" />
  680. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageExtractDialogViewModel.cs" />
  681. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageInsertDialogViewModel.cs" />
  682. <Compile Include="ViewModels\PageEdit\PageEditContentViewModel.cs" />
  683. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreehandAnnotPropertyViewModel.cs" />
  684. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreetextAnnotPropertyViewModel.cs" />
  685. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\ImageAnnotPropertyViewModel.cs" />
  686. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\LinkAnnotPropertyViewModel.cs" />
  687. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SharpsAnnotPropertyViewModel.cs" />
  688. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\StampAnnotPropertyViewModel.cs" />
  689. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\TextAnnotPropertyViewModel.cs" />
  690. <Compile Include="ViewModels\PropertyPanel\PropertyPanelContentViewModel.cs" />
  691. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadModeContentViewModel.cs" />
  692. <Compile Include="ViewModels\PropertyPanel\ViewModular\SplitScreenContentViewModel.cs" />
  693. <Compile Include="ViewModels\PropertyPanel\ViewModular\ThemesContentViewModel.cs" />
  694. <Compile Include="ViewModels\PropertyPanel\ViewModular\ViewModularContentViewModel.cs" />
  695. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.cs" />
  696. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Function.cs" />
  697. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Properties.cs" />
  698. <Compile Include="ViewModels\Tools\ScanContentViewModel.cs" />
  699. <Compile Include="ViewModels\Tools\TextEditToolContentViewModel.cs" />
  700. <Compile Include="ViewModels\Tools\ToolsBarContentViewModel.cs" />
  701. <Compile Include="ViewModels\EditTools\Watermark\WatermarkContentViewModel.cs" />
  702. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateBaseContentViewModel.cs" />
  703. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateFileContentViewModel.cs" />
  704. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateTextContentViewModel.cs" />
  705. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListBaseContentViewModel.cs" />
  706. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListFileContentViewModel.cs" />
  707. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListTextContentViewModel.cs" />
  708. <Compile Include="Views\BOTA\AnnotationContent.xaml.cs">
  709. <DependentUpon>AnnotationContent.xaml</DependentUpon>
  710. </Compile>
  711. <Compile Include="Views\BOTA\AnnotationListItem.xaml.cs">
  712. <DependentUpon>AnnotationListItem.xaml</DependentUpon>
  713. </Compile>
  714. <Compile Include="Views\BOTA\BookmarkContent.xaml.cs">
  715. <DependentUpon>BookmarkContent.xaml</DependentUpon>
  716. </Compile>
  717. <Compile Include="ViewModels\EditTools\Watermark\WatermarkDocumentContentViewModel.cs" />
  718. <Compile Include="Views\BOTA\BOTAContent.xaml.cs">
  719. <DependentUpon>BOTAContent.xaml</DependentUpon>
  720. </Compile>
  721. <Compile Include="Views\BOTA\OutLineControl.xaml.cs">
  722. <DependentUpon>OutLineControl.xaml</DependentUpon>
  723. </Compile>
  724. <Compile Include="Views\BOTA\SearchContent.xaml.cs">
  725. <DependentUpon>SearchContent.xaml</DependentUpon>
  726. </Compile>
  727. <Compile Include="Views\BottomToolContent.xaml.cs">
  728. <DependentUpon>BottomToolContent.xaml</DependentUpon>
  729. </Compile>
  730. <Compile Include="Views\Dialog\AboutDialog.xaml.cs">
  731. <DependentUpon>AboutDialog.xaml</DependentUpon>
  732. </Compile>
  733. <Compile Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml.cs">
  734. <DependentUpon>AddAnnotationDialog.xaml</DependentUpon>
  735. </Compile>
  736. <Compile Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml.cs">
  737. <DependentUpon>ScreenAnnotationDialog.xaml</DependentUpon>
  738. </Compile>
  739. <Compile Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml.cs">
  740. <DependentUpon>ConverterCSVDialog.xaml</DependentUpon>
  741. </Compile>
  742. <Compile Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml.cs">
  743. <DependentUpon>ConverterExcelDialog.xaml</DependentUpon>
  744. </Compile>
  745. <Compile Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml.cs">
  746. <DependentUpon>ConverterHTMLDialog.xaml</DependentUpon>
  747. </Compile>
  748. <Compile Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml.cs">
  749. <DependentUpon>ConverterImgDialog.xaml</DependentUpon>
  750. </Compile>
  751. <Compile Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml.cs">
  752. <DependentUpon>ConverterPPTDialog.xaml</DependentUpon>
  753. </Compile>
  754. <Compile Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml.cs">
  755. <DependentUpon>ConverterProgressBarDialog.xaml</DependentUpon>
  756. </Compile>
  757. <Compile Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml.cs">
  758. <DependentUpon>ConverterRTFDialog.xaml</DependentUpon>
  759. </Compile>
  760. <Compile Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml.cs">
  761. <DependentUpon>ConverterTextDialog.xaml</DependentUpon>
  762. </Compile>
  763. <Compile Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml.cs">
  764. <DependentUpon>ConverterWordDialog.xaml</DependentUpon>
  765. </Compile>
  766. <Compile Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml.cs">
  767. <DependentUpon>AddBookmarkDialog.xaml</DependentUpon>
  768. </Compile>
  769. <Compile Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml.cs">
  770. <DependentUpon>BookmarkInfoDialog.xaml</DependentUpon>
  771. </Compile>
  772. <Compile Include="Views\Dialog\FullScreenWindow.xaml.cs">
  773. <DependentUpon>FullScreenWindow.xaml</DependentUpon>
  774. </Compile>
  775. <Compile Include="Views\Dialog\HomePageToolsDialogs\CreateFromHtmlDialog.xaml.cs">
  776. <DependentUpon>CreateFromHtmlDialog.xaml</DependentUpon>
  777. </Compile>
  778. <Compile Include="Views\Dialog\HomePageToolsDialogs\CreateFromScannerDialogs.xaml.cs">
  779. <DependentUpon>CreateFromScannerDialogs.xaml</DependentUpon>
  780. </Compile>
  781. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateBaseContent.xaml.cs">
  782. <DependentUpon>HomePageBackgroundCreateBaseContent.xaml</DependentUpon>
  783. </Compile>
  784. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateColorContent.xaml.cs">
  785. <DependentUpon>HomePageBackgroundCreateColorContent.xaml</DependentUpon>
  786. </Compile>
  787. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateFileContent.xaml.cs">
  788. <DependentUpon>HomePageBackgroundCreateFileContent.xaml</DependentUpon>
  789. </Compile>
  790. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundDialog.xaml.cs">
  791. <DependentUpon>HomePageBackgroundDialog.xaml</DependentUpon>
  792. </Compile>
  793. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListBaseContent.xaml.cs">
  794. <DependentUpon>HomePageBackgroundTemplateListBaseContent.xaml</DependentUpon>
  795. </Compile>
  796. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListColorContent.xaml.cs">
  797. <DependentUpon>HomePageBackgroundTemplateListColorContent.xaml</DependentUpon>
  798. </Compile>
  799. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListFileContent.xaml.cs">
  800. <DependentUpon>HomePageBackgroundTemplateListFileContent.xaml</DependentUpon>
  801. </Compile>
  802. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesCreateContent.xaml.cs">
  803. <DependentUpon>HomePageBatesCreateContent.xaml</DependentUpon>
  804. </Compile>
  805. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesTemplateListContent.xaml.cs">
  806. <DependentUpon>HomePageBatesTemplateListContent.xaml</DependentUpon>
  807. </Compile>
  808. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterCreateContent.xaml.cs">
  809. <DependentUpon>HomePageHeaderFooterCreateContent.xaml</DependentUpon>
  810. </Compile>
  811. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterTemplateListContent.xaml.cs">
  812. <DependentUpon>HomePageHeaderFooterTemplateListContent.xaml</DependentUpon>
  813. </Compile>
  814. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml.cs">
  815. <DependentUpon>HomePageBatchProcessingDialog.xaml</DependentUpon>
  816. </Compile>
  817. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesDialog.xaml.cs">
  818. <DependentUpon>HomePageBatesDialog.xaml</DependentUpon>
  819. </Compile>
  820. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml.cs">
  821. <DependentUpon>HomePageCompressDialog.xaml</DependentUpon>
  822. </Compile>
  823. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml.cs">
  824. <DependentUpon>HomePageConverterCSV.xaml</DependentUpon>
  825. </Compile>
  826. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml.cs">
  827. <DependentUpon>HomePageConverterDialog.xaml</DependentUpon>
  828. </Compile>
  829. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml.cs">
  830. <DependentUpon>HomePageConverterExcel.xaml</DependentUpon>
  831. </Compile>
  832. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml.cs">
  833. <DependentUpon>HomePageConverterImg.xaml</DependentUpon>
  834. </Compile>
  835. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml.cs">
  836. <DependentUpon>HomePageConverterWord.xaml</DependentUpon>
  837. </Compile>
  838. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterDialog.xaml.cs">
  839. <DependentUpon>HomePageHeaderFooterDialog.xaml</DependentUpon>
  840. </Compile>
  841. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageRemoveDialog.xaml.cs">
  842. <DependentUpon>HomePageRemoveDialog.xaml</DependentUpon>
  843. </Compile>
  844. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml.cs">
  845. <DependentUpon>HomePageSetPasswordDialog.xaml</DependentUpon>
  846. </Compile>
  847. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateBaseContent.xaml.cs">
  848. <DependentUpon>HomePageWatermarkCreateBaseContent.xaml</DependentUpon>
  849. </Compile>
  850. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateFileContent.xaml.cs">
  851. <DependentUpon>HomePageWatermarkCreateFileContent.xaml</DependentUpon>
  852. </Compile>
  853. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateTextContent.xaml.cs">
  854. <DependentUpon>HomePageWatermarkCreateTextContent.xaml</DependentUpon>
  855. </Compile>
  856. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkDialog.xaml.cs">
  857. <DependentUpon>HomePageWatermarkDialog.xaml</DependentUpon>
  858. </Compile>
  859. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListBaseContent.xaml.cs">
  860. <DependentUpon>HomePageWatermarkTemplateListBaseContent.xaml</DependentUpon>
  861. </Compile>
  862. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListFileContent.xaml.cs">
  863. <DependentUpon>HomePageWatermarkTemplateListFileContent.xaml</DependentUpon>
  864. </Compile>
  865. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListTextContent.xaml.cs">
  866. <DependentUpon>HomePageWatermarkTemplateListTextContent.xaml</DependentUpon>
  867. </Compile>
  868. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml.cs">
  869. <DependentUpon>HomePageExtractDialog.xaml</DependentUpon>
  870. </Compile>
  871. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml.cs">
  872. <DependentUpon>HomePageInsertDialog.xaml</DependentUpon>
  873. </Compile>
  874. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml.cs">
  875. <DependentUpon>HomePagePictureToPDFDialog.xaml</DependentUpon>
  876. </Compile>
  877. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDocumentContent.xaml.cs">
  878. <DependentUpon>HomePagePrinterDocumentContent.xaml</DependentUpon>
  879. </Compile>
  880. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml.cs">
  881. <DependentUpon>HomePagePrinterModBookletContent.xaml</DependentUpon>
  882. </Compile>
  883. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml.cs">
  884. <DependentUpon>HomePagePrinterModMultipleContent.xaml</DependentUpon>
  885. </Compile>
  886. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml.cs">
  887. <DependentUpon>HomePagePrinterModPosterContent.xaml</DependentUpon>
  888. </Compile>
  889. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml.cs">
  890. <DependentUpon>HomePagePrinterModSizeContent.xaml</DependentUpon>
  891. </Compile>
  892. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPaperSettingsDialog.xaml.cs">
  893. <DependentUpon>HomePagePrinterPaperSettingsDialog.xaml</DependentUpon>
  894. </Compile>
  895. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml.cs">
  896. <DependentUpon>HomePageSplitDialog.xaml</DependentUpon>
  897. </Compile>
  898. <Compile Include="Views\Dialog\NoviceGuidDialog.xaml.cs">
  899. <DependentUpon>NoviceGuidDialog.xaml</DependentUpon>
  900. </Compile>
  901. <Compile Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml.cs">
  902. <DependentUpon>ExtractDialog.xaml</DependentUpon>
  903. </Compile>
  904. <Compile Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml.cs">
  905. <DependentUpon>InsertDialog.xaml</DependentUpon>
  906. </Compile>
  907. <Compile Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml.cs">
  908. <DependentUpon>SplitDialog.xaml</DependentUpon>
  909. </Compile>
  910. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml.cs">
  911. <DependentUpon>HomePagePrinterDialog.xaml</DependentUpon>
  912. </Compile>
  913. <Compile Include="Views\Dialog\PropertiesDialog.xaml.cs">
  914. <DependentUpon>PropertiesDialog.xaml</DependentUpon>
  915. </Compile>
  916. <Compile Include="Views\Dialog\Redaction\MarkSettingDialog.xaml.cs">
  917. <DependentUpon>MarkSettingDialog.xaml</DependentUpon>
  918. </Compile>
  919. <Compile Include="Views\Dialog\Redaction\PageMarkDialog.xaml.cs">
  920. <DependentUpon>PageMarkDialog.xaml</DependentUpon>
  921. </Compile>
  922. <Compile Include="Views\Dialog\Redaction\RepeatMarkDialog.xaml.cs">
  923. <DependentUpon>RepeatMarkDialog.xaml</DependentUpon>
  924. </Compile>
  925. <Compile Include="Views\Dialog\ServiceDialog\CodeRegion.xaml.cs">
  926. <DependentUpon>CodeRegion.xaml</DependentUpon>
  927. </Compile>
  928. <Compile Include="Views\Dialog\ServiceDialog\IAPCompareDialog.xaml.cs">
  929. <DependentUpon>IAPCompareDialog.xaml</DependentUpon>
  930. </Compile>
  931. <Compile Include="Views\Dialog\ServiceDialog\LoginDialog.xaml.cs">
  932. <DependentUpon>LoginDialog.xaml</DependentUpon>
  933. </Compile>
  934. <Compile Include="Views\Dialog\ServiceDialog\LoginPasswordRegion.xaml.cs">
  935. <DependentUpon>LoginPasswordRegion.xaml</DependentUpon>
  936. </Compile>
  937. <Compile Include="Views\Dialog\ServiceDialog\LoginRegion.xaml.cs">
  938. <DependentUpon>LoginRegion.xaml</DependentUpon>
  939. </Compile>
  940. <Compile Include="Views\Dialog\ServiceDialog\NOInternetRegion.xaml.cs">
  941. <DependentUpon>NOInternetRegion.xaml</DependentUpon>
  942. </Compile>
  943. <Compile Include="Views\Dialog\ServiceDialog\PasswordUpdataRegion.xaml.cs">
  944. <DependentUpon>PasswordUpdataRegion.xaml</DependentUpon>
  945. </Compile>
  946. <Compile Include="Views\Dialog\ServiceDialog\RegisterDialog.xaml.cs">
  947. <DependentUpon>RegisterDialog.xaml</DependentUpon>
  948. </Compile>
  949. <Compile Include="Views\Dialog\ServiceDialog\RegisterOKRegion.xaml.cs">
  950. <DependentUpon>RegisterOKRegion.xaml</DependentUpon>
  951. </Compile>
  952. <Compile Include="Views\Dialog\ServiceDialog\RegisterRegion.xaml.cs">
  953. <DependentUpon>RegisterRegion.xaml</DependentUpon>
  954. </Compile>
  955. <Compile Include="Views\Dialog\ServiceDialog\UserDialog.xaml.cs">
  956. <DependentUpon>UserDialog.xaml</DependentUpon>
  957. </Compile>
  958. <Compile Include="Views\Dialog\ServiceDialog\UserOutCodeRegion.xaml.cs">
  959. <DependentUpon>UserOutCodeRegion.xaml</DependentUpon>
  960. </Compile>
  961. <Compile Include="Views\Dialog\ServiceDialog\UserOutingLogin.xaml.cs">
  962. <DependentUpon>UserOutingLogin.xaml</DependentUpon>
  963. </Compile>
  964. <Compile Include="Views\Dialog\ServiceDialog\UserOutOKRegion.xaml.cs">
  965. <DependentUpon>UserOutOKRegion.xaml</DependentUpon>
  966. </Compile>
  967. <Compile Include="Views\Dialog\SettingsDialog.xaml.cs">
  968. <DependentUpon>SettingsDialog.xaml</DependentUpon>
  969. </Compile>
  970. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml.cs">
  971. <DependentUpon>CompressDialog.xaml</DependentUpon>
  972. </Compile>
  973. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml.cs">
  974. <DependentUpon>CompressProgressBarDialog.xaml</DependentUpon>
  975. </Compile>
  976. <Compile Include="Views\Dialog\ToolsDialogs\MergeDialog.xaml.cs">
  977. <DependentUpon>MergeDialog.xaml</DependentUpon>
  978. </Compile>
  979. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml.cs">
  980. <DependentUpon>CheckPasswordDialog.xaml</DependentUpon>
  981. </Compile>
  982. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml.cs">
  983. <DependentUpon>DeleteSafetySettingsDialog.xaml</DependentUpon>
  984. </Compile>
  985. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml.cs">
  986. <DependentUpon>SetPasswordDialog.xaml</DependentUpon>
  987. </Compile>
  988. <Compile Include="Views\Dialog\VerifyPassWordDialog.xaml.cs">
  989. <DependentUpon>VerifyPassWordDialog.xaml</DependentUpon>
  990. </Compile>
  991. <Compile Include="Views\EditTools\Redaction\RedactionContent.xaml.cs">
  992. <DependentUpon>RedactionContent.xaml</DependentUpon>
  993. </Compile>
  994. <Compile Include="Views\EditTools\Bates\BatesContent.xaml.cs">
  995. <DependentUpon>BatesContent.xaml</DependentUpon>
  996. </Compile>
  997. <Compile Include="Views\EditTools\Bates\BatesCreateContent.xaml.cs">
  998. <DependentUpon>BatesCreateContent.xaml</DependentUpon>
  999. </Compile>
  1000. <Compile Include="Views\EditTools\Bates\BatesDocumentContent.xaml.cs">
  1001. <DependentUpon>BatesDocumentContent.xaml</DependentUpon>
  1002. </Compile>
  1003. <Compile Include="Views\EditTools\Bates\BatesTemplateListContent.xaml.cs">
  1004. <DependentUpon>BatesTemplateListContent.xaml</DependentUpon>
  1005. </Compile>
  1006. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml.cs">
  1007. <DependentUpon>HeaderFooterContent.xaml</DependentUpon>
  1008. </Compile>
  1009. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml.cs">
  1010. <DependentUpon>HeaderFooterCreateContent.xaml</DependentUpon>
  1011. </Compile>
  1012. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml.cs">
  1013. <DependentUpon>HeaderFooterDocumentContent.xaml</DependentUpon>
  1014. </Compile>
  1015. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml.cs">
  1016. <DependentUpon>HeaderFooterTemplateListContent.xaml</DependentUpon>
  1017. </Compile>
  1018. <Compile Include="Views\FillAndSign\FillAndSignContent.xaml.cs">
  1019. <DependentUpon>FillAndSignContent.xaml</DependentUpon>
  1020. </Compile>
  1021. <Compile Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml.cs">
  1022. <DependentUpon>DateFillProperty.xaml</DependentUpon>
  1023. </Compile>
  1024. <Compile Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml.cs">
  1025. <DependentUpon>ShapFillProperty.xaml</DependentUpon>
  1026. </Compile>
  1027. <Compile Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml.cs">
  1028. <DependentUpon>TextFillProperty.xaml</DependentUpon>
  1029. </Compile>
  1030. <Compile Include="Views\Form\ButtonProperty.xaml.cs">
  1031. <DependentUpon>ButtonProperty.xaml</DependentUpon>
  1032. </Compile>
  1033. <Compile Include="Views\Form\CheckBoxProperty.xaml.cs">
  1034. <DependentUpon>CheckBoxProperty.xaml</DependentUpon>
  1035. </Compile>
  1036. <Compile Include="Views\Form\ComboxProperty.xaml.cs">
  1037. <DependentUpon>ComboxProperty.xaml</DependentUpon>
  1038. </Compile>
  1039. <Compile Include="Views\Form\EditPresetColorsDialog.xaml.cs">
  1040. <DependentUpon>EditPresetColorsDialog.xaml</DependentUpon>
  1041. </Compile>
  1042. <Compile Include="Views\Form\EmptyFormProperty.xaml.cs">
  1043. <DependentUpon>EmptyFormProperty.xaml</DependentUpon>
  1044. </Compile>
  1045. <Compile Include="Views\Form\FormsToolContent.xaml.cs">
  1046. <DependentUpon>FormsToolContent.xaml</DependentUpon>
  1047. <SubType>Code</SubType>
  1048. </Compile>
  1049. <Compile Include="Views\Form\ListBoxProperty.xaml.cs">
  1050. <DependentUpon>ListBoxProperty.xaml</DependentUpon>
  1051. </Compile>
  1052. <Compile Include="Views\Form\RadioButtonProperty.xaml.cs">
  1053. <DependentUpon>RadioButtonProperty.xaml</DependentUpon>
  1054. </Compile>
  1055. <Compile Include="Views\Form\SignProperty.xaml.cs">
  1056. <DependentUpon>SignProperty.xaml</DependentUpon>
  1057. </Compile>
  1058. <Compile Include="Views\Form\TextFieldProperty.xaml.cs">
  1059. <DependentUpon>TextFieldProperty.xaml</DependentUpon>
  1060. </Compile>
  1061. <Compile Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml.cs">
  1062. <DependentUpon>CloudDriveContent.xaml</DependentUpon>
  1063. </Compile>
  1064. <Compile Include="Views\EditTools\Background\BackgroundContent.xaml.cs">
  1065. <DependentUpon>BackgroundContent.xaml</DependentUpon>
  1066. </Compile>
  1067. <Compile Include="Views\EditTools\Background\BackgroundDocumentContent.xaml.cs">
  1068. <DependentUpon>BackgroundDocumentContent.xaml</DependentUpon>
  1069. </Compile>
  1070. <Compile Include="Views\EditTools\Watermark\WatermarkContent.xaml.cs">
  1071. <DependentUpon>WatermarkContent.xaml</DependentUpon>
  1072. </Compile>
  1073. <Compile Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml.cs">
  1074. <DependentUpon>WatermarkCreateBaseContent.xaml</DependentUpon>
  1075. </Compile>
  1076. <Compile Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml.cs">
  1077. <DependentUpon>WatermarkCreateFileContent.xaml</DependentUpon>
  1078. </Compile>
  1079. <Compile Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml.cs">
  1080. <DependentUpon>WatermarkCreateTextContent.xaml</DependentUpon>
  1081. </Compile>
  1082. <Compile Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml.cs">
  1083. <DependentUpon>WatermarkDocumentContent.xaml</DependentUpon>
  1084. </Compile>
  1085. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml.cs">
  1086. <DependentUpon>WatermarkTemplateListBaseContent.xaml</DependentUpon>
  1087. </Compile>
  1088. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml.cs">
  1089. <DependentUpon>WatermarkTemplateListFileContent.xaml</DependentUpon>
  1090. </Compile>
  1091. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml.cs">
  1092. <DependentUpon>WatermarkTemplateListTextContent.xaml</DependentUpon>
  1093. </Compile>
  1094. <Compile Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml.cs">
  1095. <DependentUpon>BackgroundCreateBaseContent.xaml</DependentUpon>
  1096. </Compile>
  1097. <Compile Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml.cs">
  1098. <DependentUpon>BackgroundCreateColorContent.xaml</DependentUpon>
  1099. </Compile>
  1100. <Compile Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml.cs">
  1101. <DependentUpon>BackgroundCreateFileContent.xaml</DependentUpon>
  1102. </Compile>
  1103. <Compile Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml.cs">
  1104. <DependentUpon>BackgroundTemplateListBaseContent.xaml</DependentUpon>
  1105. </Compile>
  1106. <Compile Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml.cs">
  1107. <DependentUpon>BackgroundTemplateListColorContent.xaml</DependentUpon>
  1108. </Compile>
  1109. <Compile Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml.cs">
  1110. <DependentUpon>BackgroundTemplateListFileContent.xaml</DependentUpon>
  1111. </Compile>
  1112. <Compile Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml.cs">
  1113. <DependentUpon>CloudFilesContent.xaml</DependentUpon>
  1114. </Compile>
  1115. <Compile Include="Views\HomePanel\HomeCloudContent.xaml.cs">
  1116. <DependentUpon>HomeCloudContent.xaml</DependentUpon>
  1117. </Compile>
  1118. <Compile Include="Views\HomePanel\HomeGuidContent.xaml.cs">
  1119. <DependentUpon>HomeGuidContent.xaml</DependentUpon>
  1120. </Compile>
  1121. <Compile Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml.cs">
  1122. <DependentUpon>PDFToolExpendItem.xaml</DependentUpon>
  1123. </Compile>
  1124. <Compile Include="Views\HomePanel\PDFTools\PDFToolItem.xaml.cs">
  1125. <DependentUpon>PDFToolItem.xaml</DependentUpon>
  1126. </Compile>
  1127. <Compile Include="Views\HomePanel\HomeToolsContent.xaml.cs">
  1128. <DependentUpon>HomeToolsContent.xaml</DependentUpon>
  1129. </Compile>
  1130. <Compile Include="Helper\PDFToolsHelper.cs" />
  1131. <Compile Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml.cs">
  1132. <DependentUpon>PDFToolsContent.xaml</DependentUpon>
  1133. </Compile>
  1134. <Compile Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml.cs">
  1135. <DependentUpon>QuickToolsContent.xaml</DependentUpon>
  1136. </Compile>
  1137. <Compile Include="Views\HomePanel\PromotionContent.xaml.cs">
  1138. <DependentUpon>PromotionContent.xaml</DependentUpon>
  1139. </Compile>
  1140. <Compile Include="Views\HomePanel\RecentFiles\DocItemControl.xaml.cs">
  1141. <DependentUpon>DocItemControl.xaml</DependentUpon>
  1142. </Compile>
  1143. <Compile Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml.cs">
  1144. <DependentUpon>DocItemListViewControl.xaml</DependentUpon>
  1145. </Compile>
  1146. <Compile Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml.cs">
  1147. <DependentUpon>RecentFilesContent.xaml</DependentUpon>
  1148. </Compile>
  1149. <Compile Include="Views\MainContent.xaml.cs">
  1150. <DependentUpon>MainContent.xaml</DependentUpon>
  1151. </Compile>
  1152. <Compile Include="Views\PageEdit\PageEditContent.xaml.cs">
  1153. <DependentUpon>PageEditContent.xaml</DependentUpon>
  1154. </Compile>
  1155. <Compile Include="CustomControl\CompositeControl\ColorContent.xaml.cs">
  1156. <DependentUpon>ColorContent.xaml</DependentUpon>
  1157. </Compile>
  1158. <Compile Include="CustomControl\CompositeControl\SlidContentPop.xaml.cs">
  1159. <DependentUpon>SlidContentPop.xaml</DependentUpon>
  1160. </Compile>
  1161. <Compile Include="Views\Dialog\CustomCreateDialog.xaml.cs">
  1162. <DependentUpon>CustomCreateDialog.xaml</DependentUpon>
  1163. </Compile>
  1164. <Compile Include="Views\Dialog\DynamicPropertyDialog.xaml.cs">
  1165. <DependentUpon>DynamicPropertyDialog.xaml</DependentUpon>
  1166. </Compile>
  1167. <Compile Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml.cs">
  1168. <DependentUpon>FreehandAnnotProperty.xaml</DependentUpon>
  1169. </Compile>
  1170. <Compile Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml.cs">
  1171. <DependentUpon>FreetextAnnotProperty.xaml</DependentUpon>
  1172. </Compile>
  1173. <Compile Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml.cs">
  1174. <DependentUpon>ImageAnnotProperty.xaml</DependentUpon>
  1175. </Compile>
  1176. <Compile Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml.cs">
  1177. <DependentUpon>LinkAnnotProperty.xaml</DependentUpon>
  1178. </Compile>
  1179. <Compile Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml.cs">
  1180. <DependentUpon>SharpsAnnotProperty.xaml</DependentUpon>
  1181. </Compile>
  1182. <Compile Include="Views\PropertyPanel\AnnotPanel\SignatureAnnotProperty.xaml.cs">
  1183. <DependentUpon>SignatureAnnotProperty.xaml</DependentUpon>
  1184. </Compile>
  1185. <Compile Include="Views\Dialog\SignatureCreateDialog.xaml.cs">
  1186. <DependentUpon>SignatureCreateDialog.xaml</DependentUpon>
  1187. </Compile>
  1188. <Compile Include="Views\PropertyPanel\AnnotPanel\SnapshotEditMenu.xaml.cs">
  1189. <DependentUpon>SnapshotEditMenu.xaml</DependentUpon>
  1190. </Compile>
  1191. <Compile Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml.cs">
  1192. <DependentUpon>StampAnnotProperty.xaml</DependentUpon>
  1193. </Compile>
  1194. <Compile Include="Views\PropertyPanel\AnnotPanel\StickyNotePopup.xaml.cs">
  1195. <DependentUpon>StickyNotePopup.xaml</DependentUpon>
  1196. </Compile>
  1197. <Compile Include="Views\PropertyPanel\AnnotPanel\StickyNoteProperty.xaml.cs">
  1198. <DependentUpon>StickyNoteProperty.xaml</DependentUpon>
  1199. </Compile>
  1200. <Compile Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml.cs">
  1201. <DependentUpon>TextAnnotProperty.xaml</DependentUpon>
  1202. </Compile>
  1203. <Compile Include="CustomControl\CompositeControl\SlidContent.xaml.cs">
  1204. <DependentUpon>SlidContent.xaml</DependentUpon>
  1205. </Compile>
  1206. <Compile Include="Views\PropertyPanel\PDFEdit\ImageEditProperty.xaml.cs">
  1207. <DependentUpon>ImageEditProperty.xaml</DependentUpon>
  1208. </Compile>
  1209. <Compile Include="Views\PropertyPanel\PDFEdit\ImageTextEditProperty.xaml.cs">
  1210. <DependentUpon>ImageTextEditProperty.xaml</DependentUpon>
  1211. </Compile>
  1212. <Compile Include="Views\PropertyPanel\PDFEdit\TextEditProperty.xaml.cs">
  1213. <DependentUpon>TextEditProperty.xaml</DependentUpon>
  1214. </Compile>
  1215. <Compile Include="Views\PropertyPanel\PropertyPanelContent.xaml.cs">
  1216. <DependentUpon>PropertyPanelContent.xaml</DependentUpon>
  1217. </Compile>
  1218. <Compile Include="Views\PropertyPanel\Scan\ScanPropertyPanel.xaml.cs">
  1219. <DependentUpon>ScanPropertyPanel.xaml</DependentUpon>
  1220. </Compile>
  1221. <Compile Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml.cs">
  1222. <DependentUpon>ReadModeContent.xaml</DependentUpon>
  1223. </Compile>
  1224. <Compile Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml.cs">
  1225. <DependentUpon>ReadViewContent.xaml</DependentUpon>
  1226. </Compile>
  1227. <Compile Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml.cs">
  1228. <DependentUpon>SplitScreenContent.xaml</DependentUpon>
  1229. </Compile>
  1230. <Compile Include="Views\PropertyPanel\ViewModular\PageContent.xaml.cs">
  1231. <DependentUpon>PageContent.xaml</DependentUpon>
  1232. </Compile>
  1233. <Compile Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml.cs">
  1234. <DependentUpon>ThemesContent.xaml</DependentUpon>
  1235. </Compile>
  1236. <Compile Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml.cs">
  1237. <DependentUpon>ViewModularContent.xaml</DependentUpon>
  1238. </Compile>
  1239. <Compile Include="Views\Scan\Redress.xaml.cs">
  1240. <DependentUpon>Redress.xaml</DependentUpon>
  1241. </Compile>
  1242. <Compile Include="Views\Scan\ScanViwer.xaml.cs">
  1243. <DependentUpon>ScanViwer.xaml</DependentUpon>
  1244. </Compile>
  1245. <Compile Include="Views\TipContent\EnterReadModeTip.xaml.cs">
  1246. <DependentUpon>EnterReadModeTip.xaml</DependentUpon>
  1247. </Compile>
  1248. <Compile Include="Views\TipContent\FileRestrictedTip.xaml.cs">
  1249. <DependentUpon>FileRestrictedTip.xaml</DependentUpon>
  1250. </Compile>
  1251. <Compile Include="Views\TipContent\LinkAnnotTip.xaml.cs">
  1252. <DependentUpon>LinkAnnotTip.xaml</DependentUpon>
  1253. </Compile>
  1254. <Compile Include="Views\TipContent\ReadModelTip.xaml.cs">
  1255. <DependentUpon>ReadModelTip.xaml</DependentUpon>
  1256. </Compile>
  1257. <Compile Include="Views\TipContent\RemoveSecuritySuccessTip.xaml.cs">
  1258. <DependentUpon>RemoveSecuritySuccessTip.xaml</DependentUpon>
  1259. </Compile>
  1260. <Compile Include="Views\TipContent\SetPasswordSuccessfullyTip.xaml.cs">
  1261. <DependentUpon>SetPasswordSuccessfullyTip.xaml</DependentUpon>
  1262. </Compile>
  1263. <Compile Include="Views\Tools\AnnotToolContent.xaml.cs">
  1264. <DependentUpon>AnnotToolContent.xaml</DependentUpon>
  1265. </Compile>
  1266. <Compile Include="Views\Tools\ConverterBarContent.xaml.cs">
  1267. <DependentUpon>ConverterBarContent.xaml</DependentUpon>
  1268. </Compile>
  1269. <Compile Include="Views\Tools\ScanContent.xaml.cs">
  1270. <DependentUpon>ScanContent.xaml</DependentUpon>
  1271. </Compile>
  1272. <Compile Include="Views\Tools\TextEditToolContent.xaml.cs">
  1273. <DependentUpon>TextEditToolContent.xaml</DependentUpon>
  1274. </Compile>
  1275. <Compile Include="Views\Tools\ToolsBarContent.xaml.cs">
  1276. <DependentUpon>ToolsBarContent.xaml</DependentUpon>
  1277. </Compile>
  1278. <Compile Include="Views\ViewContent.xaml.cs">
  1279. <DependentUpon>ViewContent.xaml</DependentUpon>
  1280. </Compile>
  1281. <Page Include="CustomControl\AlertsMessage.xaml">
  1282. <Generator>MSBuild:Compile</Generator>
  1283. <SubType>Designer</SubType>
  1284. </Page>
  1285. <Page Include="CustomControl\BatchStatus.xaml">
  1286. <SubType>Designer</SubType>
  1287. <Generator>MSBuild:Compile</Generator>
  1288. </Page>
  1289. <Page Include="CustomControl\ColorDropBox.xaml">
  1290. <Generator>MSBuild:Compile</Generator>
  1291. <SubType>Designer</SubType>
  1292. </Page>
  1293. <Page Include="CustomControl\ColorDropBoxPop.xaml">
  1294. <Generator>MSBuild:Compile</Generator>
  1295. <SubType>Designer</SubType>
  1296. </Page>
  1297. <Page Include="CustomControl\CommonWritableComboBox.xaml">
  1298. <Generator>MSBuild:Compile</Generator>
  1299. <SubType>Designer</SubType>
  1300. </Page>
  1301. <Page Include="CustomControl\CompositeControl\ColorMenuItem.xaml">
  1302. <SubType>Designer</SubType>
  1303. <Generator>MSBuild:Compile</Generator>
  1304. </Page>
  1305. <Page Include="CustomControl\CompositeControl\ColorSubContent.xaml">
  1306. <Generator>MSBuild:Compile</Generator>
  1307. <SubType>Designer</SubType>
  1308. </Page>
  1309. <Page Include="CustomControl\CompositeControl\CustomComboControl.xaml">
  1310. <Generator>MSBuild:Compile</Generator>
  1311. <SubType>Designer</SubType>
  1312. </Page>
  1313. <Page Include="CustomControl\CompositeControl\SlidComboControl.xaml">
  1314. <Generator>MSBuild:Compile</Generator>
  1315. <SubType>Designer</SubType>
  1316. </Page>
  1317. <Page Include="CustomControl\Form\FormFieldCombox.xaml">
  1318. <SubType>Designer</SubType>
  1319. <Generator>MSBuild:Compile</Generator>
  1320. </Page>
  1321. <Page Include="CustomControl\Form\LayoutAglinContent.xaml">
  1322. <SubType>Designer</SubType>
  1323. <Generator>MSBuild:Compile</Generator>
  1324. </Page>
  1325. <Page Include="CustomControl\LoadingControl.xaml">
  1326. <SubType>Designer</SubType>
  1327. <Generator>MSBuild:Compile</Generator>
  1328. </Page>
  1329. <Page Include="CustomControl\NumericUpDown.xaml">
  1330. <SubType>Designer</SubType>
  1331. <Generator>MSBuild:Compile</Generator>
  1332. </Page>
  1333. <Page Include="CustomControl\PageControl.xaml">
  1334. <SubType>Designer</SubType>
  1335. <Generator>MSBuild:Compile</Generator>
  1336. </Page>
  1337. <Page Include="CustomControl\PageTurningPreview.xaml">
  1338. <SubType>Designer</SubType>
  1339. <Generator>MSBuild:Compile</Generator>
  1340. </Page>
  1341. <Page Include="CustomControl\PaginationControl.xaml">
  1342. <SubType>Designer</SubType>
  1343. <Generator>MSBuild:Compile</Generator>
  1344. </Page>
  1345. <Page Include="CustomControl\TextBoxWithTip.xaml">
  1346. <SubType>Designer</SubType>
  1347. <Generator>MSBuild:Compile</Generator>
  1348. </Page>
  1349. <Page Include="CustomControl\ToastControl.xaml">
  1350. <Generator>MSBuild:Compile</Generator>
  1351. <SubType>Designer</SubType>
  1352. </Page>
  1353. <Page Include="CustomControl\WritableComboBox.xaml">
  1354. <SubType>Designer</SubType>
  1355. <Generator>MSBuild:Compile</Generator>
  1356. </Page>
  1357. <Page Include="Styles\ButtonStyle.xaml">
  1358. <SubType>Designer</SubType>
  1359. <Generator>MSBuild:Compile</Generator>
  1360. </Page>
  1361. <Page Include="Styles\CheckBoxStyle.xaml">
  1362. <SubType>Designer</SubType>
  1363. <Generator>MSBuild:Compile</Generator>
  1364. </Page>
  1365. <Page Include="Styles\ComboxStyle.xaml">
  1366. <SubType>Designer</SubType>
  1367. <Generator>MSBuild:Compile</Generator>
  1368. </Page>
  1369. <Page Include="Styles\ContainerStyles\ComboxStyle\ComboxItemStyle.xaml">
  1370. <SubType>Designer</SubType>
  1371. <Generator>MSBuild:Compile</Generator>
  1372. </Page>
  1373. <Page Include="Styles\ContextMenuFormStyle.xaml">
  1374. <SubType>Designer</SubType>
  1375. <Generator>MSBuild:Compile</Generator>
  1376. </Page>
  1377. <Page Include="Styles\ContextMenuStyle.xaml">
  1378. <Generator>MSBuild:Compile</Generator>
  1379. <SubType>Designer</SubType>
  1380. </Page>
  1381. <Page Include="Styles\ContextMenuTextEditStyle.xaml">
  1382. <SubType>Designer</SubType>
  1383. <Generator>MSBuild:Compile</Generator>
  1384. </Page>
  1385. <Page Include="Styles\CustomBtnStyle.xaml">
  1386. <Generator>MSBuild:Compile</Generator>
  1387. <SubType>Designer</SubType>
  1388. </Page>
  1389. <Page Include="Styles\CustomListItemStyle.xaml">
  1390. <SubType>Designer</SubType>
  1391. <Generator>MSBuild:Compile</Generator>
  1392. </Page>
  1393. <Page Include="Styles\ExpanderStyle.xaml">
  1394. <Generator>MSBuild:Compile</Generator>
  1395. <SubType>Designer</SubType>
  1396. </Page>
  1397. <Page Include="Styles\ImageButtonStyle.xaml">
  1398. <SubType>Designer</SubType>
  1399. <Generator>MSBuild:Compile</Generator>
  1400. </Page>
  1401. <Page Include="Styles\ImageRadioButtonDictionary.xaml">
  1402. <SubType>Designer</SubType>
  1403. <Generator>MSBuild:Compile</Generator>
  1404. </Page>
  1405. <Page Include="Styles\ListBoxStyle.xaml">
  1406. <Generator>MSBuild:Compile</Generator>
  1407. <SubType>Designer</SubType>
  1408. </Page>
  1409. <Page Include="Styles\ListViewStyle.xaml">
  1410. <Generator>MSBuild:Compile</Generator>
  1411. <SubType>Designer</SubType>
  1412. </Page>
  1413. <Page Include="Styles\OutLineItemStyle.xaml">
  1414. <SubType>Designer</SubType>
  1415. <Generator>MSBuild:Compile</Generator>
  1416. </Page>
  1417. <Page Include="Styles\PathButtonStyle.xaml">
  1418. <SubType>Designer</SubType>
  1419. <Generator>MSBuild:Compile</Generator>
  1420. </Page>
  1421. <Page Include="Styles\PathRadioButtonDictionary.xaml">
  1422. <SubType>Designer</SubType>
  1423. <Generator>MSBuild:Compile</Generator>
  1424. </Page>
  1425. <Page Include="Styles\RadioButtonStyle.xaml">
  1426. <SubType>Designer</SubType>
  1427. <Generator>MSBuild:Compile</Generator>
  1428. </Page>
  1429. <Page Include="Styles\SeparatorStyle.xaml">
  1430. <Generator>MSBuild:Compile</Generator>
  1431. <SubType>Designer</SubType>
  1432. </Page>
  1433. <Page Include="Styles\SliderStyle.xaml">
  1434. <Generator>MSBuild:Compile</Generator>
  1435. <SubType>Designer</SubType>
  1436. </Page>
  1437. <Page Include="Styles\TabControlStyle.xaml">
  1438. <SubType>Designer</SubType>
  1439. <Generator>MSBuild:Compile</Generator>
  1440. </Page>
  1441. <Page Include="Styles\TextBoxStyle.xaml">
  1442. <SubType>Designer</SubType>
  1443. <Generator>MSBuild:Compile</Generator>
  1444. </Page>
  1445. <Page Include="Styles\ToggleButton.xaml">
  1446. <SubType>Designer</SubType>
  1447. <Generator>MSBuild:Compile</Generator>
  1448. </Page>
  1449. <Page Include="Styles\WindowsStyle.xaml">
  1450. <Generator>MSBuild:Compile</Generator>
  1451. <SubType>Designer</SubType>
  1452. </Page>
  1453. <Page Include="Themes\Alias_Light.xaml">
  1454. <SubType>Designer</SubType>
  1455. <Generator>MSBuild:Compile</Generator>
  1456. </Page>
  1457. <Page Include="Themes\Generic.xaml">
  1458. <Generator>MSBuild:Compile</Generator>
  1459. <SubType>Designer</SubType>
  1460. </Page>
  1461. <Page Include="Themes\Global.xaml">
  1462. <SubType>Designer</SubType>
  1463. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1464. </Page>
  1465. <Page Include="Views\BOTA\AnnotationContent.xaml">
  1466. <SubType>Designer</SubType>
  1467. <Generator>MSBuild:Compile</Generator>
  1468. </Page>
  1469. <Page Include="Views\BOTA\AnnotationListItem.xaml">
  1470. <SubType>Designer</SubType>
  1471. <Generator>MSBuild:Compile</Generator>
  1472. </Page>
  1473. <Page Include="Views\BOTA\BookmarkContent.xaml">
  1474. <SubType>Designer</SubType>
  1475. <Generator>MSBuild:Compile</Generator>
  1476. </Page>
  1477. <Page Include="Views\BOTA\BOTAContent.xaml">
  1478. <SubType>Designer</SubType>
  1479. <Generator>MSBuild:Compile</Generator>
  1480. </Page>
  1481. <Page Include="Views\BOTA\OutLineControl.xaml">
  1482. <SubType>Designer</SubType>
  1483. <Generator>MSBuild:Compile</Generator>
  1484. </Page>
  1485. <Page Include="Views\BOTA\SearchContent.xaml">
  1486. <Generator>MSBuild:Compile</Generator>
  1487. <SubType>Designer</SubType>
  1488. </Page>
  1489. <Page Include="Views\BottomToolContent.xaml">
  1490. <SubType>Designer</SubType>
  1491. <Generator>MSBuild:Compile</Generator>
  1492. </Page>
  1493. <Page Include="Views\Dialog\AboutDialog.xaml">
  1494. <SubType>Designer</SubType>
  1495. <Generator>MSBuild:Compile</Generator>
  1496. </Page>
  1497. <Page Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml">
  1498. <SubType>Designer</SubType>
  1499. <Generator>MSBuild:Compile</Generator>
  1500. </Page>
  1501. <Page Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml">
  1502. <SubType>Designer</SubType>
  1503. <Generator>MSBuild:Compile</Generator>
  1504. </Page>
  1505. <Page Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml">
  1506. <SubType>Designer</SubType>
  1507. <Generator>MSBuild:Compile</Generator>
  1508. </Page>
  1509. <Page Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml">
  1510. <SubType>Designer</SubType>
  1511. <Generator>MSBuild:Compile</Generator>
  1512. </Page>
  1513. <Page Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml">
  1514. <SubType>Designer</SubType>
  1515. <Generator>MSBuild:Compile</Generator>
  1516. </Page>
  1517. <Page Include="Views\Dialog\FullScreenWindow.xaml">
  1518. <SubType>Designer</SubType>
  1519. <Generator>MSBuild:Compile</Generator>
  1520. </Page>
  1521. <Page Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml">
  1522. <SubType>Designer</SubType>
  1523. <Generator>MSBuild:Compile</Generator>
  1524. </Page>
  1525. <Page Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml">
  1526. <SubType>Designer</SubType>
  1527. <Generator>MSBuild:Compile</Generator>
  1528. </Page>
  1529. <Page Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml">
  1530. <SubType>Designer</SubType>
  1531. <Generator>MSBuild:Compile</Generator>
  1532. </Page>
  1533. <Page Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml">
  1534. <SubType>Designer</SubType>
  1535. <Generator>MSBuild:Compile</Generator>
  1536. </Page>
  1537. <Page Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml">
  1538. <SubType>Designer</SubType>
  1539. <Generator>MSBuild:Compile</Generator>
  1540. </Page>
  1541. <Page Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml">
  1542. <SubType>Designer</SubType>
  1543. <Generator>MSBuild:Compile</Generator>
  1544. </Page>
  1545. <Page Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml">
  1546. <SubType>Designer</SubType>
  1547. <Generator>MSBuild:Compile</Generator>
  1548. </Page>
  1549. <Page Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml">
  1550. <SubType>Designer</SubType>
  1551. <Generator>MSBuild:Compile</Generator>
  1552. </Page>
  1553. <Page Include="Views\Dialog\HomePageToolsDialogs\CreateFromScannerDialogs.xaml">
  1554. <Generator>MSBuild:Compile</Generator>
  1555. <SubType>Designer</SubType>
  1556. </Page>
  1557. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateBaseContent.xaml">
  1558. <SubType>Designer</SubType>
  1559. <Generator>MSBuild:Compile</Generator>
  1560. </Page>
  1561. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateColorContent.xaml">
  1562. <SubType>Designer</SubType>
  1563. <Generator>MSBuild:Compile</Generator>
  1564. </Page>
  1565. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateFileContent.xaml">
  1566. <SubType>Designer</SubType>
  1567. <Generator>MSBuild:Compile</Generator>
  1568. </Page>
  1569. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundDialog.xaml">
  1570. <SubType>Designer</SubType>
  1571. <Generator>MSBuild:Compile</Generator>
  1572. </Page>
  1573. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListBaseContent.xaml">
  1574. <SubType>Designer</SubType>
  1575. <Generator>MSBuild:Compile</Generator>
  1576. </Page>
  1577. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListColorContent.xaml">
  1578. <SubType>Designer</SubType>
  1579. <Generator>MSBuild:Compile</Generator>
  1580. </Page>
  1581. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListFileContent.xaml">
  1582. <SubType>Designer</SubType>
  1583. <Generator>MSBuild:Compile</Generator>
  1584. </Page>
  1585. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesCreateContent.xaml">
  1586. <SubType>Designer</SubType>
  1587. <Generator>MSBuild:Compile</Generator>
  1588. </Page>
  1589. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesTemplateListContent.xaml">
  1590. <SubType>Designer</SubType>
  1591. <Generator>MSBuild:Compile</Generator>
  1592. </Page>
  1593. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterCreateContent.xaml">
  1594. <SubType>Designer</SubType>
  1595. <Generator>MSBuild:Compile</Generator>
  1596. </Page>
  1597. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterTemplateListContent.xaml">
  1598. <SubType>Designer</SubType>
  1599. <Generator>MSBuild:Compile</Generator>
  1600. </Page>
  1601. <Page Include="Views\Dialog\HomePageToolsDialogs\CreateFromHtmlDialog.xaml">
  1602. <SubType>Designer</SubType>
  1603. <Generator>MSBuild:Compile</Generator>
  1604. </Page>
  1605. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml">
  1606. <SubType>Designer</SubType>
  1607. <Generator>MSBuild:Compile</Generator>
  1608. </Page>
  1609. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesDialog.xaml">
  1610. <SubType>Designer</SubType>
  1611. <Generator>MSBuild:Compile</Generator>
  1612. </Page>
  1613. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterDialog.xaml">
  1614. <SubType>Designer</SubType>
  1615. <Generator>MSBuild:Compile</Generator>
  1616. </Page>
  1617. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageRemoveDialog.xaml">
  1618. <Generator>MSBuild:Compile</Generator>
  1619. <SubType>Designer</SubType>
  1620. </Page>
  1621. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateBaseContent.xaml">
  1622. <SubType>Designer</SubType>
  1623. <Generator>MSBuild:Compile</Generator>
  1624. </Page>
  1625. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateFileContent.xaml">
  1626. <SubType>Designer</SubType>
  1627. <Generator>MSBuild:Compile</Generator>
  1628. </Page>
  1629. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateTextContent.xaml">
  1630. <SubType>Designer</SubType>
  1631. <Generator>MSBuild:Compile</Generator>
  1632. </Page>
  1633. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkDialog.xaml">
  1634. <SubType>Designer</SubType>
  1635. <Generator>MSBuild:Compile</Generator>
  1636. </Page>
  1637. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListBaseContent.xaml">
  1638. <SubType>Designer</SubType>
  1639. <Generator>MSBuild:Compile</Generator>
  1640. </Page>
  1641. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListFileContent.xaml">
  1642. <SubType>Designer</SubType>
  1643. <Generator>MSBuild:Compile</Generator>
  1644. </Page>
  1645. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListTextContent.xaml">
  1646. <SubType>Designer</SubType>
  1647. <Generator>MSBuild:Compile</Generator>
  1648. </Page>
  1649. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDocumentContent.xaml">
  1650. <SubType>Designer</SubType>
  1651. <Generator>MSBuild:Compile</Generator>
  1652. </Page>
  1653. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPaperSettingsDialog.xaml">
  1654. <SubType>Designer</SubType>
  1655. <Generator>MSBuild:Compile</Generator>
  1656. </Page>
  1657. <Page Include="Views\Dialog\NoviceGuidDialog.xaml">
  1658. <SubType>Designer</SubType>
  1659. <Generator>MSBuild:Compile</Generator>
  1660. </Page>
  1661. <Page Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml">
  1662. <SubType>Designer</SubType>
  1663. <Generator>MSBuild:Compile</Generator>
  1664. </Page>
  1665. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml">
  1666. <SubType>Designer</SubType>
  1667. <Generator>MSBuild:Compile</Generator>
  1668. </Page>
  1669. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml">
  1670. <SubType>Designer</SubType>
  1671. <Generator>MSBuild:Compile</Generator>
  1672. </Page>
  1673. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml">
  1674. <SubType>Designer</SubType>
  1675. <Generator>MSBuild:Compile</Generator>
  1676. </Page>
  1677. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml">
  1678. <SubType>Designer</SubType>
  1679. <Generator>MSBuild:Compile</Generator>
  1680. </Page>
  1681. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml">
  1682. <SubType>Designer</SubType>
  1683. <Generator>MSBuild:Compile</Generator>
  1684. </Page>
  1685. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml">
  1686. <SubType>Designer</SubType>
  1687. <Generator>MSBuild:Compile</Generator>
  1688. </Page>
  1689. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml">
  1690. <SubType>Designer</SubType>
  1691. <Generator>MSBuild:Compile</Generator>
  1692. </Page>
  1693. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml">
  1694. <SubType>Designer</SubType>
  1695. <Generator>MSBuild:Compile</Generator>
  1696. </Page>
  1697. <Page Include="Views\Dialog\PropertiesDialog.xaml">
  1698. <Generator>MSBuild:Compile</Generator>
  1699. <SubType>Designer</SubType>
  1700. </Page>
  1701. <Page Include="Views\Dialog\Redaction\MarkSettingDialog.xaml">
  1702. <Generator>MSBuild:Compile</Generator>
  1703. <SubType>Designer</SubType>
  1704. </Page>
  1705. <Page Include="Views\Dialog\Redaction\PageMarkDialog.xaml">
  1706. <Generator>MSBuild:Compile</Generator>
  1707. <SubType>Designer</SubType>
  1708. </Page>
  1709. <Page Include="Views\Dialog\Redaction\RepeatMarkDialog.xaml">
  1710. <Generator>MSBuild:Compile</Generator>
  1711. <SubType>Designer</SubType>
  1712. </Page>
  1713. <Page Include="Views\Dialog\ServiceDialog\CodeRegion.xaml">
  1714. <SubType>Designer</SubType>
  1715. <Generator>MSBuild:Compile</Generator>
  1716. </Page>
  1717. <Page Include="Views\Dialog\ServiceDialog\IAPCompareDialog.xaml">
  1718. <SubType>Designer</SubType>
  1719. <Generator>MSBuild:Compile</Generator>
  1720. </Page>
  1721. <Page Include="Views\Dialog\ServiceDialog\LoginDialog.xaml">
  1722. <SubType>Designer</SubType>
  1723. <Generator>MSBuild:Compile</Generator>
  1724. </Page>
  1725. <Page Include="Views\Dialog\ServiceDialog\LoginPasswordRegion.xaml">
  1726. <SubType>Designer</SubType>
  1727. <Generator>MSBuild:Compile</Generator>
  1728. </Page>
  1729. <Page Include="Views\Dialog\ServiceDialog\LoginRegion.xaml">
  1730. <SubType>Designer</SubType>
  1731. <Generator>MSBuild:Compile</Generator>
  1732. </Page>
  1733. <Page Include="Views\Dialog\ServiceDialog\NOInternetRegion.xaml">
  1734. <SubType>Designer</SubType>
  1735. <Generator>MSBuild:Compile</Generator>
  1736. </Page>
  1737. <Page Include="Views\Dialog\ServiceDialog\PasswordUpdataRegion.xaml">
  1738. <SubType>Designer</SubType>
  1739. <Generator>MSBuild:Compile</Generator>
  1740. </Page>
  1741. <Page Include="Views\Dialog\ServiceDialog\RegisterDialog.xaml">
  1742. <SubType>Designer</SubType>
  1743. <Generator>MSBuild:Compile</Generator>
  1744. </Page>
  1745. <Page Include="Views\Dialog\ServiceDialog\RegisterOKRegion.xaml">
  1746. <SubType>Designer</SubType>
  1747. <Generator>MSBuild:Compile</Generator>
  1748. </Page>
  1749. <Page Include="Views\Dialog\ServiceDialog\RegisterRegion.xaml">
  1750. <SubType>Designer</SubType>
  1751. <Generator>MSBuild:Compile</Generator>
  1752. </Page>
  1753. <Page Include="Views\Dialog\ServiceDialog\UserDialog.xaml">
  1754. <SubType>Designer</SubType>
  1755. <Generator>MSBuild:Compile</Generator>
  1756. </Page>
  1757. <Page Include="Views\Dialog\ServiceDialog\UserOutCodeRegion.xaml">
  1758. <SubType>Designer</SubType>
  1759. <Generator>MSBuild:Compile</Generator>
  1760. </Page>
  1761. <Page Include="Views\Dialog\ServiceDialog\UserOutingLogin.xaml">
  1762. <SubType>Designer</SubType>
  1763. <Generator>MSBuild:Compile</Generator>
  1764. </Page>
  1765. <Page Include="Views\Dialog\ServiceDialog\UserOutOKRegion.xaml">
  1766. <SubType>Designer</SubType>
  1767. <Generator>MSBuild:Compile</Generator>
  1768. </Page>
  1769. <Page Include="Views\Dialog\SettingsDialog.xaml">
  1770. <Generator>MSBuild:Compile</Generator>
  1771. <SubType>Designer</SubType>
  1772. </Page>
  1773. <Page Include="Views\Dialog\ToolsDialogs\MergeDialog.xaml">
  1774. <Generator>MSBuild:Compile</Generator>
  1775. <SubType>Designer</SubType>
  1776. </Page>
  1777. <Page Include="Views\EditTools\Bates\BatesContent.xaml">
  1778. <SubType>Designer</SubType>
  1779. <Generator>MSBuild:Compile</Generator>
  1780. </Page>
  1781. <Page Include="Views\EditTools\Bates\BatesCreateContent.xaml">
  1782. <SubType>Designer</SubType>
  1783. <Generator>MSBuild:Compile</Generator>
  1784. </Page>
  1785. <Page Include="Views\EditTools\Bates\BatesDocumentContent.xaml">
  1786. <SubType>Designer</SubType>
  1787. <Generator>MSBuild:Compile</Generator>
  1788. </Page>
  1789. <Page Include="Views\EditTools\Bates\BatesTemplateListContent.xaml">
  1790. <SubType>Designer</SubType>
  1791. <Generator>MSBuild:Compile</Generator>
  1792. </Page>
  1793. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml">
  1794. <SubType>Designer</SubType>
  1795. <Generator>MSBuild:Compile</Generator>
  1796. </Page>
  1797. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml">
  1798. <SubType>Designer</SubType>
  1799. <Generator>MSBuild:Compile</Generator>
  1800. </Page>
  1801. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml">
  1802. <SubType>Designer</SubType>
  1803. <Generator>MSBuild:Compile</Generator>
  1804. </Page>
  1805. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml">
  1806. <SubType>Designer</SubType>
  1807. <Generator>MSBuild:Compile</Generator>
  1808. </Page>
  1809. <Page Include="Views\EditTools\Redaction\RedactionContent.xaml">
  1810. <SubType>Designer</SubType>
  1811. <Generator>MSBuild:Compile</Generator>
  1812. </Page>
  1813. <Page Include="Views\FillAndSign\FillAndSignContent.xaml">
  1814. <SubType>Designer</SubType>
  1815. <Generator>MSBuild:Compile</Generator>
  1816. </Page>
  1817. <Page Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml">
  1818. <SubType>Designer</SubType>
  1819. <Generator>MSBuild:Compile</Generator>
  1820. </Page>
  1821. <Page Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml">
  1822. <SubType>Designer</SubType>
  1823. <Generator>MSBuild:Compile</Generator>
  1824. </Page>
  1825. <Page Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml">
  1826. <SubType>Designer</SubType>
  1827. <Generator>MSBuild:Compile</Generator>
  1828. </Page>
  1829. <Page Include="Views\Form\ButtonProperty.xaml">
  1830. <SubType>Designer</SubType>
  1831. <Generator>MSBuild:Compile</Generator>
  1832. </Page>
  1833. <Page Include="Views\Form\CheckBoxProperty.xaml">
  1834. <SubType>Designer</SubType>
  1835. <Generator>MSBuild:Compile</Generator>
  1836. </Page>
  1837. <Page Include="Views\Form\ComboxProperty.xaml">
  1838. <SubType>Designer</SubType>
  1839. <Generator>MSBuild:Compile</Generator>
  1840. </Page>
  1841. <Page Include="Views\Form\EditPresetColorsDialog.xaml">
  1842. <Generator>MSBuild:Compile</Generator>
  1843. <SubType>Designer</SubType>
  1844. </Page>
  1845. <Page Include="Views\Form\EmptyFormProperty.xaml">
  1846. <Generator>MSBuild:Compile</Generator>
  1847. <SubType>Designer</SubType>
  1848. </Page>
  1849. <Page Include="Views\Form\FormsToolContent.xaml">
  1850. <SubType>Designer</SubType>
  1851. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1852. </Page>
  1853. <Page Include="Views\Form\ListBoxProperty.xaml">
  1854. <SubType>Designer</SubType>
  1855. <Generator>MSBuild:Compile</Generator>
  1856. </Page>
  1857. <Page Include="Views\Form\RadioButtonProperty.xaml">
  1858. <SubType>Designer</SubType>
  1859. <Generator>MSBuild:Compile</Generator>
  1860. </Page>
  1861. <Page Include="Views\Form\SignProperty.xaml">
  1862. <SubType>Designer</SubType>
  1863. <Generator>MSBuild:Compile</Generator>
  1864. </Page>
  1865. <Page Include="Views\Form\TextFieldProperty.xaml">
  1866. <SubType>Designer</SubType>
  1867. <Generator>MSBuild:Compile</Generator>
  1868. </Page>
  1869. <Page Include="Views\HomeContent.xaml">
  1870. <SubType>Designer</SubType>
  1871. <Generator>MSBuild:Compile</Generator>
  1872. </Page>
  1873. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml">
  1874. <SubType>Designer</SubType>
  1875. <Generator>MSBuild:Compile</Generator>
  1876. </Page>
  1877. <Page Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml">
  1878. <SubType>Designer</SubType>
  1879. <Generator>MSBuild:Compile</Generator>
  1880. </Page>
  1881. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml">
  1882. <SubType>Designer</SubType>
  1883. <Generator>MSBuild:Compile</Generator>
  1884. </Page>
  1885. <Page Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml">
  1886. <SubType>Designer</SubType>
  1887. <Generator>MSBuild:Compile</Generator>
  1888. </Page>
  1889. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml">
  1890. <SubType>Designer</SubType>
  1891. <Generator>MSBuild:Compile</Generator>
  1892. </Page>
  1893. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml">
  1894. <SubType>Designer</SubType>
  1895. <Generator>MSBuild:Compile</Generator>
  1896. </Page>
  1897. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml">
  1898. <SubType>Designer</SubType>
  1899. <Generator>MSBuild:Compile</Generator>
  1900. </Page>
  1901. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml">
  1902. <SubType>Designer</SubType>
  1903. <Generator>MSBuild:Compile</Generator>
  1904. </Page>
  1905. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml">
  1906. <SubType>Designer</SubType>
  1907. <Generator>MSBuild:Compile</Generator>
  1908. </Page>
  1909. <Page Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml">
  1910. <Generator>MSBuild:Compile</Generator>
  1911. <SubType>Designer</SubType>
  1912. </Page>
  1913. <Page Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml">
  1914. <Generator>MSBuild:Compile</Generator>
  1915. <SubType>Designer</SubType>
  1916. </Page>
  1917. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml">
  1918. <SubType>Designer</SubType>
  1919. </Page>
  1920. <Page Include="CustomControl\CompositeControl\ColorContent.xaml">
  1921. <SubType>Designer</SubType>
  1922. <Generator>MSBuild:Compile</Generator>
  1923. </Page>
  1924. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml">
  1925. <SubType>Designer</SubType>
  1926. <Generator>MSBuild:Compile</Generator>
  1927. </Page>
  1928. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml">
  1929. <SubType>Designer</SubType>
  1930. <Generator>MSBuild:Compile</Generator>
  1931. </Page>
  1932. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml">
  1933. <SubType>Designer</SubType>
  1934. <Generator>MSBuild:Compile</Generator>
  1935. </Page>
  1936. <Page Include="CustomControl\CompositeControl\SlidContentPop.xaml">
  1937. <Generator>MSBuild:Compile</Generator>
  1938. <SubType>Designer</SubType>
  1939. </Page>
  1940. <Page Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml">
  1941. <SubType>Designer</SubType>
  1942. <Generator>MSBuild:Compile</Generator>
  1943. </Page>
  1944. <Page Include="Views\Dialog\CustomCreateDialog.xaml">
  1945. <SubType>Designer</SubType>
  1946. <Generator>MSBuild:Compile</Generator>
  1947. </Page>
  1948. <Page Include="Views\Dialog\DynamicPropertyDialog.xaml">
  1949. <SubType>Designer</SubType>
  1950. <Generator>MSBuild:Compile</Generator>
  1951. </Page>
  1952. <Page Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml">
  1953. <SubType>Designer</SubType>
  1954. <Generator>MSBuild:Compile</Generator>
  1955. </Page>
  1956. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml">
  1957. <SubType>Designer</SubType>
  1958. <Generator>MSBuild:Compile</Generator>
  1959. </Page>
  1960. <Page Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml">
  1961. <SubType>Designer</SubType>
  1962. <Generator>MSBuild:Compile</Generator>
  1963. </Page>
  1964. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml">
  1965. <SubType>Designer</SubType>
  1966. <Generator>MSBuild:Compile</Generator>
  1967. </Page>
  1968. <Page Include="Views\Dialog\VerifyPassWordDialog.xaml">
  1969. <SubType>Designer</SubType>
  1970. <Generator>MSBuild:Compile</Generator>
  1971. </Page>
  1972. <Page Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml">
  1973. <SubType>Designer</SubType>
  1974. <Generator>MSBuild:Compile</Generator>
  1975. </Page>
  1976. <Page Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml">
  1977. <SubType>Designer</SubType>
  1978. <Generator>MSBuild:Compile</Generator>
  1979. </Page>
  1980. <Page Include="Views\EditTools\Background\BackgroundContent.xaml">
  1981. <SubType>Designer</SubType>
  1982. <Generator>MSBuild:Compile</Generator>
  1983. </Page>
  1984. <Page Include="Views\EditTools\Background\BackgroundDocumentContent.xaml">
  1985. <SubType>Designer</SubType>
  1986. <Generator>MSBuild:Compile</Generator>
  1987. </Page>
  1988. <Page Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml">
  1989. <SubType>Designer</SubType>
  1990. <Generator>MSBuild:Compile</Generator>
  1991. </Page>
  1992. <Page Include="Views\EditTools\Watermark\WatermarkContent.xaml">
  1993. <SubType>Designer</SubType>
  1994. <Generator>MSBuild:Compile</Generator>
  1995. </Page>
  1996. <Page Include="Views\PropertyPanel\AnnotPanel\SignatureAnnotProperty.xaml">
  1997. <SubType>Designer</SubType>
  1998. <Generator>MSBuild:Compile</Generator>
  1999. </Page>
  2000. <Page Include="Views\Dialog\SignatureCreateDialog.xaml">
  2001. <SubType>Designer</SubType>
  2002. <Generator>MSBuild:Compile</Generator>
  2003. </Page>
  2004. <Page Include="Views\PropertyPanel\AnnotPanel\SnapshotEditMenu.xaml">
  2005. <SubType>Designer</SubType>
  2006. <Generator>MSBuild:Compile</Generator>
  2007. </Page>
  2008. <Page Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml">
  2009. <SubType>Designer</SubType>
  2010. <Generator>MSBuild:Compile</Generator>
  2011. </Page>
  2012. <Page Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml">
  2013. <SubType>Designer</SubType>
  2014. <Generator>MSBuild:Compile</Generator>
  2015. </Page>
  2016. <Page Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml">
  2017. <SubType>Designer</SubType>
  2018. <Generator>MSBuild:Compile</Generator>
  2019. </Page>
  2020. <Page Include="Views\PropertyPanel\AnnotPanel\StickyNotePopup.xaml">
  2021. <Generator>MSBuild:Compile</Generator>
  2022. <SubType>Designer</SubType>
  2023. </Page>
  2024. <Page Include="Views\PropertyPanel\AnnotPanel\StickyNoteProperty.xaml">
  2025. <SubType>Designer</SubType>
  2026. <Generator>MSBuild:Compile</Generator>
  2027. </Page>
  2028. <Page Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml">
  2029. <SubType>Designer</SubType>
  2030. <Generator>MSBuild:Compile</Generator>
  2031. </Page>
  2032. <Page Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml">
  2033. <SubType>Designer</SubType>
  2034. <Generator>MSBuild:Compile</Generator>
  2035. </Page>
  2036. <Page Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml">
  2037. <SubType>Designer</SubType>
  2038. <Generator>MSBuild:Compile</Generator>
  2039. </Page>
  2040. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml">
  2041. <SubType>Designer</SubType>
  2042. <Generator>MSBuild:Compile</Generator>
  2043. </Page>
  2044. <Page Include="CustomControl\CompositeControl\SlidContent.xaml">
  2045. <Generator>MSBuild:Compile</Generator>
  2046. </Page>
  2047. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml">
  2048. <SubType>Designer</SubType>
  2049. <Generator>MSBuild:Compile</Generator>
  2050. </Page>
  2051. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml">
  2052. <SubType>Designer</SubType>
  2053. <Generator>MSBuild:Compile</Generator>
  2054. </Page>
  2055. <Page Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml">
  2056. <SubType>Designer</SubType>
  2057. </Page>
  2058. <Page Include="Views\PropertyPanel\PDFEdit\ImageEditProperty.xaml">
  2059. <Generator>MSBuild:Compile</Generator>
  2060. <SubType>Designer</SubType>
  2061. </Page>
  2062. <Page Include="Views\PropertyPanel\PDFEdit\ImageTextEditProperty.xaml">
  2063. <Generator>MSBuild:Compile</Generator>
  2064. <SubType>Designer</SubType>
  2065. </Page>
  2066. <Page Include="Views\PropertyPanel\PDFEdit\TextEditProperty.xaml">
  2067. <Generator>MSBuild:Compile</Generator>
  2068. <SubType>Designer</SubType>
  2069. </Page>
  2070. <Page Include="Views\PropertyPanel\PropertyPanelContent.xaml">
  2071. <SubType>Designer</SubType>
  2072. <Generator>MSBuild:Compile</Generator>
  2073. </Page>
  2074. <Page Include="Views\PropertyPanel\Scan\ScanPropertyPanel.xaml">
  2075. <SubType>Designer</SubType>
  2076. <Generator>MSBuild:Compile</Generator>
  2077. </Page>
  2078. <Page Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml">
  2079. <SubType>Designer</SubType>
  2080. <Generator>MSBuild:Compile</Generator>
  2081. </Page>
  2082. <Page Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml">
  2083. <SubType>Designer</SubType>
  2084. <Generator>MSBuild:Compile</Generator>
  2085. </Page>
  2086. <Page Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml">
  2087. <SubType>Designer</SubType>
  2088. <Generator>MSBuild:Compile</Generator>
  2089. </Page>
  2090. <Page Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml">
  2091. <SubType>Designer</SubType>
  2092. <Generator>MSBuild:Compile</Generator>
  2093. </Page>
  2094. <Page Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml">
  2095. <SubType>Designer</SubType>
  2096. <Generator>MSBuild:Compile</Generator>
  2097. </Page>
  2098. <Page Include="Views\PropertyPanel\ViewModular\PageContent.xaml">
  2099. <SubType>Designer</SubType>
  2100. <Generator>MSBuild:Compile</Generator>
  2101. </Page>
  2102. <Page Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml">
  2103. <SubType>Designer</SubType>
  2104. <Generator>MSBuild:Compile</Generator>
  2105. </Page>
  2106. <Page Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml">
  2107. <SubType>Designer</SubType>
  2108. <Generator>MSBuild:Compile</Generator>
  2109. </Page>
  2110. <Page Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml">
  2111. <SubType>Designer</SubType>
  2112. <Generator>MSBuild:Compile</Generator>
  2113. </Page>
  2114. <Page Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml">
  2115. <SubType>Designer</SubType>
  2116. <Generator>MSBuild:Compile</Generator>
  2117. </Page>
  2118. <Page Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml">
  2119. <SubType>Designer</SubType>
  2120. <Generator>MSBuild:Compile</Generator>
  2121. </Page>
  2122. <Page Include="Views\HomePanel\HomeCloudContent.xaml">
  2123. <SubType>Designer</SubType>
  2124. <Generator>MSBuild:Compile</Generator>
  2125. </Page>
  2126. <Page Include="Views\HomePanel\HomeGuidContent.xaml">
  2127. <SubType>Designer</SubType>
  2128. <Generator>MSBuild:Compile</Generator>
  2129. </Page>
  2130. <Page Include="Views\HomePanel\PDFTools\PDFToolItem.xaml">
  2131. <Generator>MSBuild:Compile</Generator>
  2132. <SubType>Designer</SubType>
  2133. </Page>
  2134. <Page Include="Views\HomePanel\HomeToolsContent.xaml">
  2135. <SubType>Designer</SubType>
  2136. <Generator>MSBuild:Compile</Generator>
  2137. </Page>
  2138. <Page Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml">
  2139. <Generator>MSBuild:Compile</Generator>
  2140. <SubType>Designer</SubType>
  2141. </Page>
  2142. <Page Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml">
  2143. <SubType>Designer</SubType>
  2144. <Generator>MSBuild:Compile</Generator>
  2145. </Page>
  2146. <Page Include="Views\HomePanel\PromotionContent.xaml">
  2147. <Generator>MSBuild:Compile</Generator>
  2148. <SubType>Designer</SubType>
  2149. </Page>
  2150. <Page Include="Views\HomePanel\RecentFiles\DocItemControl.xaml">
  2151. <Generator>MSBuild:Compile</Generator>
  2152. <SubType>Designer</SubType>
  2153. </Page>
  2154. <Page Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml">
  2155. <Generator>MSBuild:Compile</Generator>
  2156. <SubType>Designer</SubType>
  2157. </Page>
  2158. <Page Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml">
  2159. <Generator>MSBuild:Compile</Generator>
  2160. <SubType>Designer</SubType>
  2161. </Page>
  2162. <Page Include="Views\MainContent.xaml">
  2163. <SubType>Designer</SubType>
  2164. <Generator>MSBuild:Compile</Generator>
  2165. </Page>
  2166. <Page Include="Views\MainWindow.xaml">
  2167. <Generator>MSBuild:Compile</Generator>
  2168. <SubType>Designer</SubType>
  2169. </Page>
  2170. <Compile Include="App.xaml.cs">
  2171. <DependentUpon>App.xaml</DependentUpon>
  2172. <SubType>Code</SubType>
  2173. </Compile>
  2174. <Compile Include="ViewModels\HomeContentViewModel.cs" />
  2175. <Compile Include="ViewModels\MainWindowViewModel.cs" />
  2176. <Compile Include="ViewModels\ViewContentViewModel.cs" />
  2177. <Compile Include="Views\HomeContent.xaml.cs">
  2178. <DependentUpon>HomeContent.xaml</DependentUpon>
  2179. </Compile>
  2180. <Compile Include="Views\MainWindow.xaml.cs">
  2181. <DependentUpon>MainWindow.xaml</DependentUpon>
  2182. <SubType>Code</SubType>
  2183. </Compile>
  2184. <Page Include="Views\PageEdit\PageEditContent.xaml">
  2185. <Generator>MSBuild:Compile</Generator>
  2186. <SubType>Designer</SubType>
  2187. </Page>
  2188. <Page Include="Views\Scan\Redress.xaml">
  2189. <SubType>Designer</SubType>
  2190. <Generator>MSBuild:Compile</Generator>
  2191. </Page>
  2192. <Page Include="Views\Scan\ScanViwer.xaml">
  2193. <SubType>Designer</SubType>
  2194. <Generator>MSBuild:Compile</Generator>
  2195. </Page>
  2196. <Page Include="Views\TipContent\EnterReadModeTip.xaml">
  2197. <SubType>Designer</SubType>
  2198. <Generator>MSBuild:Compile</Generator>
  2199. </Page>
  2200. <Page Include="Views\TipContent\FileRestrictedTip.xaml">
  2201. <SubType>Designer</SubType>
  2202. <Generator>MSBuild:Compile</Generator>
  2203. </Page>
  2204. <Page Include="Views\TipContent\LinkAnnotTip.xaml">
  2205. <Generator>MSBuild:Compile</Generator>
  2206. <SubType>Designer</SubType>
  2207. </Page>
  2208. <Page Include="Views\TipContent\ReadModelTip.xaml">
  2209. <SubType>Designer</SubType>
  2210. <Generator>MSBuild:Compile</Generator>
  2211. </Page>
  2212. <Page Include="Views\TipContent\RemoveSecuritySuccessTip.xaml">
  2213. <SubType>Designer</SubType>
  2214. <Generator>MSBuild:Compile</Generator>
  2215. </Page>
  2216. <Page Include="Views\TipContent\SetPasswordSuccessfullyTip.xaml">
  2217. <SubType>Designer</SubType>
  2218. <Generator>MSBuild:Compile</Generator>
  2219. </Page>
  2220. <Page Include="Views\Tools\AnnotToolContent.xaml">
  2221. <SubType>Designer</SubType>
  2222. <Generator>MSBuild:Compile</Generator>
  2223. </Page>
  2224. <Page Include="Views\Tools\ConverterBarContent.xaml">
  2225. <SubType>Designer</SubType>
  2226. <Generator>MSBuild:Compile</Generator>
  2227. </Page>
  2228. <Page Include="Views\Tools\ScanContent.xaml">
  2229. <SubType>Designer</SubType>
  2230. <Generator>MSBuild:Compile</Generator>
  2231. </Page>
  2232. <Page Include="Views\Tools\TextEditToolContent.xaml">
  2233. <Generator>MSBuild:Compile</Generator>
  2234. <SubType>Designer</SubType>
  2235. </Page>
  2236. <Page Include="Views\Tools\ToolsBarContent.xaml">
  2237. <SubType>Designer</SubType>
  2238. <Generator>MSBuild:Compile</Generator>
  2239. </Page>
  2240. <Page Include="Views\ViewContent.xaml">
  2241. <SubType>Designer</SubType>
  2242. <Generator>MSBuild:Compile</Generator>
  2243. </Page>
  2244. </ItemGroup>
  2245. <ItemGroup>
  2246. <Compile Include="Properties\AssemblyInfo.cs">
  2247. <SubType>Code</SubType>
  2248. </Compile>
  2249. <Compile Include="Properties\Settings.Designer.cs">
  2250. <AutoGen>True</AutoGen>
  2251. <DependentUpon>Settings.settings</DependentUpon>
  2252. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  2253. </Compile>
  2254. <None Include="credentials.json">
  2255. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2256. </None>
  2257. <None Include="packages.config" />
  2258. <None Include="Properties\Settings.settings">
  2259. <Generator>SettingsSingleFileGenerator</Generator>
  2260. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  2261. </None>
  2262. <Content Include="ComDocumentAIKit.dll">
  2263. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2264. </Content>
  2265. <Resource Include="Resources\Dialog\tips.png" />
  2266. <Resource Include="Resources\BOTA\HideAnnot.png" />
  2267. <Resource Include="Icon.ico" />
  2268. <Content Include="Resources\exe\SFTA.exe">
  2269. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  2270. </Content>
  2271. <Content Include="Resources\GuidPDF\Quick Start Guide.pdf">
  2272. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2273. </Content>
  2274. <None Include="source\models\OCR.model" />
  2275. <Resource Include="Resources\ToolBarIcon\Scan\enhance.png">
  2276. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2277. </Resource>
  2278. <Resource Include="Resources\ToolBarIcon\Scan\ocr.png">
  2279. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2280. </Resource>
  2281. <Resource Include="Resources\ToolBarIcon\Scan\batch.png">
  2282. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2283. </Resource>
  2284. <Resource Include="Resources\BOTA\no_outline.png" />
  2285. <Resource Include="Resources\PropertyPanel\nosign.png" />
  2286. <Resource Include="Resources\Dialog\password.png" />
  2287. <Resource Include="Resources\BOTA\no search.png" />
  2288. <Resource Include="Resources\Dialog\helphover.png" />
  2289. <Content Include="Resources\GuidItems\Guid_Annote.png">
  2290. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2291. </Content>
  2292. <Content Include="Resources\GuidItems\Guid_Convert.png">
  2293. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2294. </Content>
  2295. <Content Include="Resources\GuidItems\Guid_FillAndSign.png">
  2296. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2297. </Content>
  2298. <Content Include="Resources\GuidItems\Guid_Office.png">
  2299. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2300. </Content>
  2301. <Content Include="Resources\GuidItems\Guid_SignUp.png">
  2302. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2303. </Content>
  2304. <Resource Include="Resources\PromotionIcon\black_pdfreaderpro_home_en.png" />
  2305. <Resource Include="Resources\PromotionIcon\Mac.png" />
  2306. <Resource Include="Resources\Service\IAPBottom.png" />
  2307. <Resource Include="Resources\Service\IAPTop.png" />
  2308. <Resource Include="Resources\HomeIcon\noScanner.png" />
  2309. <Resource Include="Resources\PropertyPanel\no link.png" />
  2310. <Content Include="Resources\Service\Login.png">
  2311. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2312. </Content>
  2313. <Content Include="Resources\Service\Regiserok.png">
  2314. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2315. </Content>
  2316. <Content Include="source\AnalysisWord\Res\word\_rels\document.xml.rels">
  2317. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2318. </Content>
  2319. <Resource Include="Resources\BOTA\Annotation\Arrow.png" />
  2320. <Resource Include="Resources\BOTA\Annotation\Bookmark.png" />
  2321. <Resource Include="Resources\BOTA\Annotation\Circle.png" />
  2322. <Resource Include="Resources\BOTA\Annotation\Freehande.png" />
  2323. <Resource Include="Resources\BOTA\Annotation\Freehande2.png" />
  2324. <Resource Include="Resources\BOTA\Annotation\Hand.png" />
  2325. <Resource Include="Resources\BOTA\Annotation\Highlight.png" />
  2326. <Resource Include="Resources\BOTA\Annotation\Hyperlink.png" />
  2327. <Resource Include="Resources\BOTA\Annotation\Image.png" />
  2328. <Resource Include="Resources\BOTA\Annotation\Line.png" />
  2329. <Resource Include="Resources\BOTA\Annotation\Note.png" />
  2330. <Resource Include="Resources\BOTA\Annotation\Point.png" />
  2331. <Resource Include="Resources\BOTA\Annotation\Rectangle.png" />
  2332. <Resource Include="Resources\BOTA\Annotation\Selecttool.png" />
  2333. <Resource Include="Resources\BOTA\Annotation\Stamp.png" />
  2334. <Resource Include="Resources\BOTA\Annotation\Textbox.png" />
  2335. <Resource Include="Resources\BOTA\Annotation\wavyline2.png" />
  2336. <Resource Include="Resources\BOTA\empty_annotation.png" />
  2337. <Resource Include="Resources\HomeIcon\PDFTools\background.png" />
  2338. <Resource Include="Resources\HomeIcon\PDFTools\batch-remove.png" />
  2339. <Resource Include="Resources\HomeIcon\PDFTools\batch.png" />
  2340. <Resource Include="Resources\HomeIcon\PDFTools\batesnumbers.png" />
  2341. <Resource Include="Resources\HomeIcon\PDFTools\compare.png" />
  2342. <Resource Include="Resources\HomeIcon\PDFTools\compress.png" />
  2343. <Resource Include="Resources\HomeIcon\PDFTools\convert.png" />
  2344. <Resource Include="Resources\HomeIcon\PDFTools\extract.png" />
  2345. <Resource Include="Resources\HomeIcon\PDFTools\form-filed-recognition.png" />
  2346. <Resource Include="Resources\HomeIcon\PDFTools\header&amp;footer.png" />
  2347. <Resource Include="Resources\HomeIcon\PDFTools\image.png" />
  2348. <Resource Include="Resources\HomeIcon\PDFTools\insert.png" />
  2349. <Resource Include="Resources\HomeIcon\PDFTools\merge.png" />
  2350. <Resource Include="Resources\HomeIcon\PDFTools\ocr.png" />
  2351. <Resource Include="Resources\HomeIcon\PDFTools\page-edit.png" />
  2352. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-excel.png" />
  2353. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-image.png" />
  2354. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-ppt.png" />
  2355. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-word.png" />
  2356. <Resource Include="Resources\HomeIcon\PDFTools\print.png" />
  2357. <Resource Include="Resources\HomeIcon\PDFTools\reduct.png" />
  2358. <Resource Include="Resources\HomeIcon\PDFTools\security.png" />
  2359. <Resource Include="Resources\HomeIcon\PDFTools\split.png" />
  2360. <Resource Include="Resources\HomeIcon\PDFTools\watermark.png" />
  2361. <Resource Include="Resources\StampIcons\Accepted.png" />
  2362. <Resource Include="Resources\StampIcons\Approved.png" />
  2363. <Resource Include="Resources\StampIcons\Completed.png" />
  2364. <Resource Include="Resources\StampIcons\Confidential.png" />
  2365. <Resource Include="Resources\StampIcons\Draft.png" />
  2366. <Resource Include="Resources\StampIcons\Empty_stamp.png" />
  2367. <Resource Include="Resources\StampIcons\Final.png" />
  2368. <Resource Include="Resources\StampIcons\ForComment.png" />
  2369. <Resource Include="Resources\StampIcons\ForPublicRelease.png" />
  2370. <Resource Include="Resources\StampIcons\InformationOnly.png" />
  2371. <Resource Include="Resources\StampIcons\InitialHere.png" />
  2372. <Resource Include="Resources\StampIcons\NotApproved.png" />
  2373. <Resource Include="Resources\StampIcons\NotForPublicRelease.png" />
  2374. <Resource Include="Resources\StampIcons\PreliminaryResults.png" />
  2375. <Resource Include="Resources\StampIcons\PrivateMark1.png" />
  2376. <Resource Include="Resources\StampIcons\PrivateMark2.png" />
  2377. <Resource Include="Resources\StampIcons\PrivateMark3.png" />
  2378. <Resource Include="Resources\StampIcons\Rejected.png" />
  2379. <Resource Include="Resources\StampIcons\revised.png" />
  2380. <Resource Include="Resources\StampIcons\SignHere.png" />
  2381. <Resource Include="Resources\StampIcons\Void.png" />
  2382. <Resource Include="Resources\StampIcons\Witness.png" />
  2383. <Resource Include="Resources\Dialog\AddImage.png">
  2384. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2385. </Resource>
  2386. <Resource Include="Resources\Dialog\AddImageSuspend.png">
  2387. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2388. </Resource>
  2389. <Resource Include="Resources\Dialog\help.png" />
  2390. <Content Include="Resources\PageEdit\GridLine.jpg">
  2391. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2392. </Content>
  2393. <Content Include="Resources\PageEdit\HorizontalLine.jpg">
  2394. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2395. </Content>
  2396. <Content Include="Resources\PageEdit\Staff.jpg">
  2397. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2398. </Content>
  2399. <Resource Include="Resources\EditTools\watermark_bg.png" />
  2400. <Resource Include="Resources\PropertyPanel\EmptyAnnot.png" />
  2401. <Resource Include="Resources\PropertyPanel\nostamp.png" />
  2402. <Content Include="source\AnalysisWord\Res\_rels\.rels">
  2403. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2404. </Content>
  2405. </ItemGroup>
  2406. <ItemGroup>
  2407. <None Include="App.config" />
  2408. </ItemGroup>
  2409. <ItemGroup>
  2410. <Folder Include="Views\Edit\" />
  2411. <Folder Include="x64\DocumentAILib\" />
  2412. </ItemGroup>
  2413. <ItemGroup>
  2414. <Content Include="ComOCRKit.Desk.dll">
  2415. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2416. </Content>
  2417. <Content Include="ComPDFKit.Desk.dll">
  2418. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2419. </Content>
  2420. <Content Include="ComPDFKit.Viewer.dll">
  2421. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2422. </Content>
  2423. <Content Include="ComPDFKit_Conversion.dll">
  2424. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2425. </Content>
  2426. <Content Include="DotNetSpeech.dll">
  2427. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2428. </Content>
  2429. <Content Include="Dragablz.dll">
  2430. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2431. </Content>
  2432. <Resource Include="StyleAndTemplateList.txt" />
  2433. <Resource Include="Resources\QuickToolIcon\Batch.png" />
  2434. <Resource Include="Resources\HomeIcon\file_addition.png" />
  2435. <Resource Include="Resources\HomeIcon\folderOpen.png" />
  2436. <Resource Include="Resources\PromotionIcon\Android.png" />
  2437. <Resource Include="Resources\PromotionIcon\ComPDFKit.png" />
  2438. <Resource Include="Resources\PromotionIcon\ComVideoKit.png" />
  2439. <Resource Include="Resources\PromotionIcon\FilmageEditor.png" />
  2440. <Resource Include="Resources\PromotionIcon\FilmageScreen.png" />
  2441. <Resource Include="Resources\PromotionIcon\FreePDFTemplates.png" />
  2442. <Resource Include="Resources\PromotionIcon\IPhoneiPad.png" />
  2443. <Resource Include="Resources\PromotionIcon\SignFlow.png" />
  2444. <Resource Include="Resources\FilesType\ic_propertybar_file_pdf_lock.png" />
  2445. <Resource Include="Resources\FilesType\ic_propertybar_file_png_Large.png" />
  2446. <Resource Include="SDKLisence.xml" />
  2447. <Content Include="index.html">
  2448. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2449. </Content>
  2450. <Resource Include="Resources\ToolBarIcon\MyTools\Arrow.png" />
  2451. <Resource Include="Resources\ToolBarIcon\MyTools\Bookmark.png" />
  2452. <Resource Include="Resources\ToolBarIcon\MyTools\Circle.png" />
  2453. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande.png" />
  2454. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande2.png" />
  2455. <Resource Include="Resources\ToolBarIcon\MyTools\Hand.png" />
  2456. <Resource Include="Resources\ToolBarIcon\MyTools\Highlight.png" />
  2457. <Resource Include="Resources\ToolBarIcon\MyTools\Hyperlink.png" />
  2458. <Resource Include="Resources\ToolBarIcon\MyTools\Image.png" />
  2459. <Resource Include="Resources\ToolBarIcon\MyTools\Line.png" />
  2460. <Resource Include="Resources\ToolBarIcon\MyTools\Note.png" />
  2461. <Resource Include="Resources\ToolBarIcon\MyTools\Point.png" />
  2462. <Resource Include="Resources\ToolBarIcon\MyTools\Rectangle.png" />
  2463. <Resource Include="Resources\ToolBarIcon\MyTools\Selecttool.png" />
  2464. <Resource Include="Resources\ToolBarIcon\MyTools\Stamp.png" />
  2465. <Resource Include="Resources\ToolBarIcon\MyTools\Textbox.png" />
  2466. <Resource Include="Resources\ToolBarIcon\MyTools\wavyline2.png" />
  2467. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout1.xml">
  2468. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2469. </Content>
  2470. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout10.xml">
  2471. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2472. </Content>
  2473. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout11.xml">
  2474. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2475. </Content>
  2476. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout2.xml">
  2477. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2478. </Content>
  2479. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout3.xml">
  2480. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2481. </Content>
  2482. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout4.xml">
  2483. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2484. </Content>
  2485. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout5.xml">
  2486. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2487. </Content>
  2488. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout6.xml">
  2489. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2490. </Content>
  2491. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout7.xml">
  2492. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2493. </Content>
  2494. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout8.xml">
  2495. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2496. </Content>
  2497. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout9.xml">
  2498. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2499. </Content>
  2500. <Content Include="source\AnalysisPPT\Res\slideMaster1.xml">
  2501. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2502. </Content>
  2503. <Content Include="source\AnalysisPPT\Res\theme1.xml">
  2504. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2505. </Content>
  2506. <Content Include="source\AnalysisPPT\Res\thumbnail.jpeg">
  2507. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2508. </Content>
  2509. <Content Include="source\AnalysisWord\Res\docProps\app.xml">
  2510. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2511. </Content>
  2512. <Content Include="source\AnalysisWord\Res\docProps\core.xml">
  2513. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2514. </Content>
  2515. <Content Include="source\AnalysisWord\Res\word\document.xml">
  2516. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2517. </Content>
  2518. <Content Include="source\AnalysisWord\Res\word\document0.xml">
  2519. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2520. </Content>
  2521. <Content Include="source\AnalysisWord\Res\word\endnotes.xml">
  2522. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2523. </Content>
  2524. <Content Include="source\AnalysisWord\Res\word\footnotes.xml">
  2525. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2526. </Content>
  2527. <Content Include="source\AnalysisWord\Res\word\settings.xml">
  2528. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2529. </Content>
  2530. <Content Include="source\AnalysisWord\Res\word\theme\theme1.xml">
  2531. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2532. </Content>
  2533. <Content Include="source\AnalysisWord\Res\[Content_Types].xml">
  2534. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2535. </Content>
  2536. <Resource Include="Resources\BOTA\empty_bookmark.png" />
  2537. <Resource Include="Resources\PropertyPanel\colorIcon.png" />
  2538. <Content Include="SystemService\PreviewHandler.dll">
  2539. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2540. </Content>
  2541. <Content Include="SystemService\PreviewHandlerx86.dll">
  2542. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2543. </Content>
  2544. <Content Include="SystemService\TechPDFKitBase.dll">
  2545. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2546. </Content>
  2547. <Content Include="SystemService\ThumbnailProvider.dll">
  2548. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2549. </Content>
  2550. <Content Include="SystemService\ThumbnailProviderx86.dll">
  2551. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2552. </Content>
  2553. <Content Include="Updater\en-US\NetSparkleUpdater.UI.WinForms.resources.dll" />
  2554. <Content Include="Updater\NetSparkle.dll" />
  2555. <Resource Include="Updater\NetSparkle.xml" />
  2556. <Content Include="Updater\NetSparkleUpdater.UI.WinForms.dll" />
  2557. <Content Include="Updater\zh-CN\NetSparkleUpdater.UI.WinForms.resources.dll" />
  2558. <Content Include="Updater\zh-TW\NetSparkleUpdater.UI.WinForms.resources.dll" />
  2559. <Content Include="x64\ComPDFKit.dll">
  2560. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2561. </Content>
  2562. <Content Include="x64\CPDFConverterNative.dll">
  2563. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2564. </Content>
  2565. <Content Include="x64\opencv_world420.dll">
  2566. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2567. </Content>
  2568. <Content Include="x64\libhpdf.dll">
  2569. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2570. </Content>
  2571. <Content Include="x64\libpng16.dll">
  2572. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2573. </Content>
  2574. <Content Include="x64\TechPDFKit.dll">
  2575. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2576. </Content>
  2577. <Content Include="x64\TechPdfToOffice.dll">
  2578. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2579. </Content>
  2580. <Content Include="x64\vcruntime140.dll">
  2581. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2582. </Content>
  2583. <Content Include="x64\zlib1.dll">
  2584. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2585. </Content>
  2586. <Content Include="x86\ComPDFKit.dll">
  2587. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2588. </Content>
  2589. <Content Include="x86\CPDFConverterNative.dll">
  2590. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2591. </Content>
  2592. <Content Include="x86\libhpdf.dll">
  2593. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2594. </Content>
  2595. <Content Include="x86\libpng16.dll">
  2596. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2597. </Content>
  2598. <Content Include="x86\TechPDFKit.dll">
  2599. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2600. </Content>
  2601. <Content Include="x86\TechPDFToOffice.dll">
  2602. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2603. </Content>
  2604. <Content Include="x86\vcruntime140.dll">
  2605. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2606. </Content>
  2607. <Content Include="x86\zlib1.dll">
  2608. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2609. </Content>
  2610. </ItemGroup>
  2611. <ItemGroup>
  2612. <ProjectReference Include="..\PDFSettings\PDFSettings.csproj">
  2613. <Project>{bee73aae-9a2c-446b-b64d-3a8f042c985d}</Project>
  2614. <Name>PDFSettings</Name>
  2615. </ProjectReference>
  2616. </ItemGroup>
  2617. <ItemGroup>
  2618. <EmbeddedResource Include="Properties\Resources.resx">
  2619. <Generator>ResXFileCodeGenerator</Generator>
  2620. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  2621. </EmbeddedResource>
  2622. <EmbeddedResource Include="Strings\HomePage\HomePage.en.resx" />
  2623. <EmbeddedResource Include="Strings\HomePage\HomePage.resx">
  2624. <Generator>PublicResXFileCodeGenerator</Generator>
  2625. <LastGenOutput>HomePage.Designer.cs</LastGenOutput>
  2626. </EmbeddedResource>
  2627. <EmbeddedResource Include="Strings\HomePage\HomePage.zh-Hans.resx" />
  2628. <EmbeddedResource Include="Strings\HomePage\HomePage.zh-Hant.resx" />
  2629. <EmbeddedResource Include="Strings\MainPage\MainPage.en.resx" />
  2630. <EmbeddedResource Include="Strings\MainPage\MainPage.resx">
  2631. <Generator>PublicResXFileCodeGenerator</Generator>
  2632. <LastGenOutput>MainPage.Designer.cs</LastGenOutput>
  2633. <SubType>Designer</SubType>
  2634. </EmbeddedResource>
  2635. <EmbeddedResource Include="Strings\MainPage\MainPage.zh-Hans.resx" />
  2636. <EmbeddedResource Include="Strings\MainPage\MainPage.zh-Hant.resx" />
  2637. <EmbeddedResource Include="Strings\Service\Service.en.resx" />
  2638. <EmbeddedResource Include="Strings\Service\Service.resx">
  2639. <Generator>PublicResXFileCodeGenerator</Generator>
  2640. <LastGenOutput>Service.Designer.cs</LastGenOutput>
  2641. </EmbeddedResource>
  2642. <EmbeddedResource Include="Strings\Service\Service.zh-Hans.resx" />
  2643. <EmbeddedResource Include="Strings\Service\Service.zh-Hant.resx" />
  2644. </ItemGroup>
  2645. <ItemGroup>
  2646. <BootstrapperPackage Include=".NETFramework,Version=v4.6.2">
  2647. <Visible>False</Visible>
  2648. <ProductName>Microsoft .NET Framework 4.6.2 %28x86 和 x64%29</ProductName>
  2649. <Install>true</Install>
  2650. </BootstrapperPackage>
  2651. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  2652. <Visible>False</Visible>
  2653. <ProductName>.NET Framework 3.5 SP1</ProductName>
  2654. <Install>false</Install>
  2655. </BootstrapperPackage>
  2656. </ItemGroup>
  2657. <ItemGroup>
  2658. <XliffResource Include="MultilingualResources\PDF Office.en.xlf" />
  2659. <XliffResource Include="MultilingualResources\PDF Office.zh-Hans.xlf" />
  2660. <XliffResource Include="MultilingualResources\PDF Office.zh-Hant.xlf" />
  2661. </ItemGroup>
  2662. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  2663. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  2664. <PropertyGroup>
  2665. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  2666. </PropertyGroup>
  2667. <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'))" />
  2668. <Error Condition="!Exists('packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets'))" />
  2669. </Target>
  2670. <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')" />
  2671. <Import Project="packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets" Condition="Exists('packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets')" />
  2672. <Import Project="$(MSBuildExtensionsPath)\Microsoft\Multilingual App Toolkit\Microsoft.Multilingual.ResxResources.targets" Label="MultilingualAppToolkit" Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\Multilingual App Toolkit\v$(MultilingualAppToolkitVersion)\Microsoft.Multilingual.ResxResources.targets')" />
  2673. <Target Name="MATPrerequisite" BeforeTargets="PrepareForBuild" Condition="!Exists('$(MSBuildExtensionsPath)\Microsoft\Multilingual App Toolkit\Microsoft.Multilingual.ResxResources.targets')" Label="MultilingualAppToolkit">
  2674. <Warning Text="$(MSBuildProjectFile) is Multilingual build enabled, but the Multilingual App Toolkit is unavailable during the build. If building with Visual Studio, please check to ensure that toolkit is properly installed." />
  2675. </Target>
  2676. </Project>