-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenPAA.csproj
More file actions
26 lines (22 loc) · 824 Bytes
/
OpenPAA.csproj
File metadata and controls
26 lines (22 loc) · 824 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="paintdotnet">
<HintPath>..\..\..\..\..\Program Files\paint.net\paintdotnet.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Data">
<HintPath>..\..\..\..\..\Program Files\paint.net\PaintDotNet.Data.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Effects">
<HintPath>..\..\..\..\..\Program Files\paint.net\PaintDotNet.Effects.dll</HintPath>
</Reference>
</ItemGroup>
</Project>