-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQoiFileTypeNet.csproj
More file actions
26 lines (22 loc) · 1011 Bytes
/
QoiFileTypeNet.csproj
File metadata and controls
26 lines (22 loc) · 1011 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>net6.0-windows</TargetFramework>
<RootNamespace>QoiFileTypeNet</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="PaintDotNet.Base">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Base.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Core">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Core.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Data">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Data.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy "$(TargetPath)" "C:\Program Files\paint.net\FileTypes" /y
copy "$(TargetDir)$(TargetName).pdb" "C:\Program Files\paint.net\FileTypes" /y" />
</Target>
</Project>