Demo.csproj 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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)' == '' ">x86</Platform>
  7. <ProjectGuid>{1003AA2F-DE18-4812-BF1A-5AC519E05A3E}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>Demo</RootNamespace>
  10. <AssemblyName>Demo</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  17. <DebugSymbols>true</DebugSymbols>
  18. <OutputPath>bin\x64\Debug\</OutputPath>
  19. <DefineConstants>DEBUG;TRACE</DefineConstants>
  20. <DebugType>full</DebugType>
  21. <PlatformTarget>x64</PlatformTarget>
  22. <LangVersion>7.3</LangVersion>
  23. <ErrorReport>prompt</ErrorReport>
  24. <Prefer32Bit>true</Prefer32Bit>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  27. <OutputPath>bin\x64\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <Optimize>true</Optimize>
  30. <DebugType>pdbonly</DebugType>
  31. <PlatformTarget>x64</PlatformTarget>
  32. <LangVersion>7.3</LangVersion>
  33. <ErrorReport>prompt</ErrorReport>
  34. <Prefer32Bit>true</Prefer32Bit>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  37. <DebugSymbols>true</DebugSymbols>
  38. <OutputPath>bin\x86\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <DebugType>full</DebugType>
  41. <PlatformTarget>x86</PlatformTarget>
  42. <LangVersion>7.3</LangVersion>
  43. <ErrorReport>prompt</ErrorReport>
  44. <Prefer32Bit>true</Prefer32Bit>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  47. <OutputPath>bin\x86\Release\</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <Optimize>true</Optimize>
  50. <DebugType>pdbonly</DebugType>
  51. <PlatformTarget>x86</PlatformTarget>
  52. <LangVersion>7.3</LangVersion>
  53. <ErrorReport>prompt</ErrorReport>
  54. <Prefer32Bit>true</Prefer32Bit>
  55. </PropertyGroup>
  56. <PropertyGroup>
  57. <SignAssembly>false</SignAssembly>
  58. </PropertyGroup>
  59. <PropertyGroup>
  60. <AssemblyOriginatorKeyFile>
  61. </AssemblyOriginatorKeyFile>
  62. </PropertyGroup>
  63. <ItemGroup>
  64. <Reference Include="System" />
  65. <Reference Include="System.Drawing" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Program.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <None Include="App.config" />
  73. <None Include="test.pdf">
  74. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  75. </None>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <ProjectReference Include="..\MuPDFLib\MuPDFLib.vcxproj">
  79. <Project>{7ac327e2-05d5-4acc-9400-c78c183de505}</Project>
  80. <Name>MuPDFLib</Name>
  81. </ProjectReference>
  82. </ItemGroup>
  83. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  84. </Project>