-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDynamicDraw.csproj
146 lines (146 loc) · 6.19 KB
/
DynamicDraw.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<StartupObject></StartupObject>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<Deterministic>false</Deterministic>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<OutputPath></OutputPath>
</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>
<Reference Include="PaintDotNet.Effects">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Effects.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Framework">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Framework.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Resources">
<HintPath>C:\Program Files\paint.net\PaintDotNet.Resources.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.SystemLayer">
<HintPath>C:\Program Files\paint.net\PaintDotNet.SystemLayer.dll</HintPath>
</Reference>
<Reference Include="WintabDN">
<HintPath>TabletSupport\WintabDN.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Gui\Components\ColorWheel.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Components\ColorTextbox.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Components\SliderColorMode.cs" />
<Compile Update="Gui\Components\SwatchBox.cs" />
<Compile Update="Gui\Components\ThemedPanel.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Components\ThemedListBox.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Forms\CommandDialog.cs" />
<Compile Update="Gui\Forms\ColorPickerDialog.cs" />
<Compile Update="Gui\Forms\EditKeyboardShortcuts.cs" />
<Compile Update="Gui\Components\ThemedButton.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Components\ThemedCheckbox.cs" />
<Compile Update="Gui\Components\Slider.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Components\CmbxTabletValueType.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Components\Accordion.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Gui\Components\DoubleBufferedListView.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Localization\Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Content Include="TabletSupport\WintabDN.dll" />
<Content Include="Resources\icon.png" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Localization\Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<PropertyGroup />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
<NoWarn>1701;1702;CA1416;IDE0090;IDE0063</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="mkdir -p "C:\Program Files\paint.net\Effects\DynamicDraw"
move "$(TargetPath)" "C:\Program Files\paint.net\Effects\DynamicDraw"
move "$(TargetDir)\WintabDN.dll" "C:\Program Files\paint.net\Effects\DynamicDraw"
move "$(TargetDir)\DynamicDraw.deps.json" "C:\Program Files\paint.net\Effects\DynamicDraw"

"C:\Program Files\paint.net\paintdotnet.exe"" />
</Target>
</Project>