-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPDFsManager.csproj
More file actions
36 lines (32 loc) · 1.22 KB
/
PDFsManager.csproj
File metadata and controls
36 lines (32 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>res\icon\app256.ico</ApplicationIcon>
<AssemblyName>PDFsManager</AssemblyName>
<RootNamespace>PDFsManager</RootNamespace>
<Nullable>enable</Nullable>
<Version>1.0.0</Version>
<Authors>1172005thinh(QuickComp.)</Authors>
<Company>QuickComp.</Company>
<Product>PDFs Manager</Product>
<Description>A tool to manage and organize PDF files efficiently based on create date metadata.</Description>
<Copyright>Copyright © 2026 QuickComp.</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="itext7" Version="8.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="res\icon\*.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="res\lang\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="res\theme\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>