1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <TargetFrameworks>net7.0;net461</TargetFrameworks>
- <LangVersion>7.3</LangVersion>
- <Configurations>Release;Debug</Configurations>
- <Platforms>AnyCPU;x64</Platforms>
- <RootNamespace>DocumentCompare</RootNamespace>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="..\..\..\TestFile\CommonFivePage.pdf">
- <Link>CommonFivePage.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\TestFile\ElectricalDiagram.pdf">
- <Link>ElectricalDiagram.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\TestFile\ElectricalDiagram_New.pdf">
- <Link>ElectricalDiagram_New.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\TestFile\Signed.pdf">
- <Link>Signed.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\TestFile\Text.pdf">
- <Link>Text.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\TestFile\TextChanged.pdf">
- <Link>TextChanged.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\build\x64\ComPDFKit.dll">
- <Link>x64\ComPDFKit.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\build\x86\ComPDFKit.dll">
- <Link>x86\ComPDFKit.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\ComPDFKit_Logo.ico">
- <Link>ComPDFKit_Logo.ico</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\license_key_windows.txt">
- <Link>license_key_windows.txt</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\..\..\..\compdfkit\ComPDFKit\ComPDFKitCSharp\ComPDFKit.Desk.csproj" />
- <ProjectReference Include="..\ComPDFKitCSharp\ComPDFKit.Desk.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\..\LicenseKey.cs">
- <Link>LicenseKey.cs</Link>
- </Compile>
- </ItemGroup>
- </Project>
|