-
Notifications
You must be signed in to change notification settings - Fork 1
/
IcoCur.csproj
25 lines (25 loc) · 937 Bytes
/
IcoCur.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>IcoCur</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseWindowsForms>True</UseWindowsForms>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseWpf>True</UseWpf>
</PropertyGroup>
<ItemGroup>
<Reference Include="PaintDotNet.ComponentModel">
<HintPath>.\paint.net\PaintDotNet.ComponentModel.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Core">
<HintPath>.\paint.net\PaintDotNet.Core.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Data">
<HintPath>.\paint.net\PaintDotNet.Data.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Primitives">
<HintPath>.\paint.net\PaintDotNet.Primitives.dll</HintPath>
</Reference>
</ItemGroup>
</Project>