PDFViewer.csproj 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{807EE747-34A1-4E03-8B72-9E9F6C3BB002}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>PDFViewer</RootNamespace>
  10. <AssemblyName>ComPDFKit</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <WarningLevel>4</WarningLevel>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. <Deterministic>true</Deterministic>
  17. <NuGetPackageImportStamp>
  18. </NuGetPackageImportStamp>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <PlatformTarget>AnyCPU</PlatformTarget>
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <Prefer32Bit>false</Prefer32Bit>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <PlatformTarget>AnyCPU</PlatformTarget>
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <ApplicationIcon>ComPDFKit_Logo.ico</ApplicationIcon>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="ComPDFKit.Desk, Version=1.9.0.0, Culture=neutral, processorArchitecture=MSIL">
  45. <HintPath>..\packages\ComPDFKit.NetFramework.1.9.0\lib\ComPDFKit.Desk.dll</HintPath>
  46. </Reference>
  47. <Reference Include="ComPDFKit.Viewer, Version=1.9.0.0, Culture=neutral, processorArchitecture=MSIL">
  48. <HintPath>..\packages\ComPDFKit.NetFramework.1.9.0\lib\ComPDFKit.Viewer.dll</HintPath>
  49. </Reference>
  50. <Reference Include="Dragablz, Version=0.0.3.223, Culture=neutral, processorArchitecture=MSIL">
  51. <SpecificVersion>False</SpecificVersion>
  52. <HintPath>.\Dragablz.dll</HintPath>
  53. </Reference>
  54. <Reference Include="PresentationFramework.Aero2, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  55. <HintPath>..\packages\PresentationFramework.Aero2.1.0.1\lib\PresentationFramework.Aero2.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System" />
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Drawing" />
  60. <Reference Include="System.Windows.Forms" />
  61. <Reference Include="System.Xml" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Core" />
  64. <Reference Include="System.Xml.Linq" />
  65. <Reference Include="System.Data.DataSetExtensions" />
  66. <Reference Include="System.Net.Http" />
  67. <Reference Include="System.Xaml">
  68. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  69. </Reference>
  70. <Reference Include="WindowsBase" />
  71. <Reference Include="PresentationCore" />
  72. <Reference Include="PresentationFramework" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ApplicationDefinition Include="App.xaml">
  76. <Generator>MSBuild:Compile</Generator>
  77. <SubType>Designer</SubType>
  78. </ApplicationDefinition>
  79. <Compile Include="App.xaml.cs">
  80. <DependentUpon>App.xaml</DependentUpon>
  81. <SubType>Code</SubType>
  82. </Compile>
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Compile Include="MainPage.xaml.cs">
  86. <DependentUpon>MainPage.xaml</DependentUpon>
  87. </Compile>
  88. <Compile Include="MainWindow.xaml.cs">
  89. <DependentUpon>MainWindow.xaml</DependentUpon>
  90. </Compile>
  91. <Compile Include="Properties\AssemblyInfo.cs">
  92. <SubType>Code</SubType>
  93. </Compile>
  94. <Compile Include="Properties\Resources.Designer.cs">
  95. <AutoGen>True</AutoGen>
  96. <DesignTime>True</DesignTime>
  97. <DependentUpon>Resources.resx</DependentUpon>
  98. </Compile>
  99. <Compile Include="Properties\Settings.Designer.cs">
  100. <AutoGen>True</AutoGen>
  101. <DependentUpon>Settings.settings</DependentUpon>
  102. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  103. </Compile>
  104. <EmbeddedResource Include="Properties\Resources.resx">
  105. <Generator>ResXFileCodeGenerator</Generator>
  106. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  107. </EmbeddedResource>
  108. <None Include="..\TestFile\PDF32000_2008.pdf">
  109. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  110. </None>
  111. <None Include="packages.config" />
  112. <None Include="Properties\Settings.settings">
  113. <Generator>SettingsSingleFileGenerator</Generator>
  114. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  115. </None>
  116. </ItemGroup>
  117. <ItemGroup>
  118. <None Include="App.config" />
  119. </ItemGroup>
  120. <ItemGroup>
  121. <None Include="..\license_key_windows.xml">
  122. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  123. </None>
  124. <Resource Include="ComPDFKit_Logo.ico" />
  125. <Content Include="Dragablz.dll" />
  126. </ItemGroup>
  127. <ItemGroup>
  128. <Page Include="MainPage.xaml">
  129. <SubType>Designer</SubType>
  130. <Generator>MSBuild:Compile</Generator>
  131. </Page>
  132. <Page Include="MainWindow.xaml">
  133. <SubType>Designer</SubType>
  134. <Generator>MSBuild:Compile</Generator>
  135. </Page>
  136. </ItemGroup>
  137. <ItemGroup>
  138. <ProjectReference Include="..\Compdfkit_Tools\Compdfkit_Tools.csproj">
  139. <Project>{9363bcb1-3a67-446a-8093-5708b86bf418}</Project>
  140. <Name>Compdfkit_Tools</Name>
  141. </ProjectReference>
  142. </ItemGroup>
  143. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  144. <Import Project="..\packages\ComPDFKit.NetFramework.1.9.0\build\ComPDFKit.NetFramework.targets" Condition="Exists('..\packages\ComPDFKit.NetFramework.1.9.0\build\ComPDFKit.NetFramework.targets')" />
  145. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  146. <PropertyGroup>
  147. <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  148. </PropertyGroup>
  149. <Error Condition="!Exists('..\packages\ComPDFKit.NetFramework.1.9.0\build\ComPDFKit.NetFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ComPDFKit.NetFramework.1.9.0\build\ComPDFKit.NetFramework.targets'))" />
  150. </Target>
  151. </Project>