-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenNotes.csproj
More file actions
76 lines (64 loc) · 2.41 KB
/
Copy pathOpenNotes.csproj
File metadata and controls
76 lines (64 loc) · 2.41 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>Caelum</RootNamespace>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>disable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>OpenNotes</AssemblyName>
<ApplicationIcon>Assets\app-icon.ico</ApplicationIcon>
<Version>5.2.14</Version>
<AssemblyVersion>5.2.14.0</AssemblyVersion>
<FileVersion>5.2.14.0</FileVersion>
<InformationalVersion>5.2.14</InformationalVersion>
<Authors>Learnmore_smart</Authors>
<Company>Learnmore_smart</Company>
<Product>OpenNotes</Product>
<Description>A paper-like PDF annotation workspace for Windows.</Description>
<!-- Publish settings: do NOT use single-file so native DLLs stay intact -->
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PdfiumViewer" Version="2.13.0" />
<PackageReference Include="PdfiumViewer.Native.x86_64.v8-xfa" Version="2018.4.8.256" />
<PackageReference Include="PdfSharpCore" Version="1.3.67" />
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Caelum.Tests\**" />
<EmbeddedResource Remove="Caelum.Tests\**" />
<None Remove="Caelum.Tests\**" />
<Page Remove="Caelum.Tests\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="OpenNotes.Tests\**" />
<EmbeddedResource Remove="OpenNotes.Tests\**" />
<None Remove="OpenNotes.Tests\**" />
<Page Remove="OpenNotes.Tests\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" />
<Page Remove="Tests\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="artifacts\**" />
<EmbeddedResource Remove="artifacts\**" />
<None Remove="artifacts\**" />
<Page Remove="artifacts\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="test_annotation_save.cs" />
<Compile Remove="test_fix.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\app-icon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>