forked from annayudovin/PDN-ScrollGeneratorPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScrollGeneratorEffect.csproj
75 lines (69 loc) · 2.83 KB
/
ScrollGeneratorEffect.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
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
75
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>ScrollGeneratorEffect</RootNamespace>
<AssemblyName>ScrollGenerator</AssemblyName>
<Deterministic>false</Deterministic>
<PackageIcon>scroll_icon_r.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="SpiralTree.cs.bak" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="scroll_icon_r.png" />
<Content Include="scroll_icon_r.png" />
</ItemGroup>
<ItemGroup>
<Reference Include="PaintDotNet.Base">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Base.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.ComponentModel">
<HintPath>C:\Program Files\paint.net\PaintDotNet.ComponentModel.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>
<Reference Include="PaintDotNet.Effects">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Effects.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Effects.Core">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Effects.Core.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Effects.Legacy">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Effects.Legacy.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Framework">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Framework.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Fundamentals">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Fundamentals.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.ObjectModel">
<HintPath>C:\Program Files\paint.net\PaintDotNet.ObjectModel.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Primitives">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Primitives.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.PropertySystem">
<HintPath>C:\Program Files\paint.net\PaintDotNet.PropertySystem.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Windows">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Windows.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="scroll_icon_r.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="cmd /c explorer "$(TargetDir)"
exit 0" />
</Target>
</Project>