-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScaleSmooth.csproj
149 lines (134 loc) · 5.54 KB
/
ScaleSmooth.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
147
148
149
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon>shortcut.ico</ApplicationIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\A8.png" />
<None Remove="Resources\arLeft.png" />
<None Remove="Resources\arRight.png" />
<None Remove="Resources\short13.png" />
<None Remove="Resources\short255BA.png" />
<None Remove="Resources\shortAntiBicubic.png" />
<None Remove="Resources\shortBAcontrast.png" />
<None Remove="Resources\shortBAExtremum.png" />
<None Remove="Resources\shortBAmonochrome.png" />
<None Remove="Resources\shortBAmonochrome2.png" />
<None Remove="Resources\shortBASmoothContrast.png" />
<None Remove="Resources\shortBil.png" />
<None Remove="Resources\shortBilApprox.png" />
<None Remove="Resources\shortBold.png" />
<None Remove="Resources\shortContrast.png" />
<None Remove="Resources\shortDerivativeBA.png" />
<None Remove="Resources\shortFNN.png" />
<None Remove="Resources\shortFurry.png" />
<None Remove="Resources\shortGPT.png" />
<None Remove="Resources\shortRough.png" />
<None Remove="Resources\shortSeparate.png" />
<None Remove="Resources\shortSmooth.png" />
<None Remove="Resources\shortSmoothCAS.png" />
<None Remove="Resources\shortSmoothCont.png" />
<None Remove="Resources\shortSmoothContin.png" />
<None Remove="Resources\shortSmoothContr.png" />
<None Remove="Resources\shortThin255BA.png" />
</ItemGroup>
<ItemGroup>
<Content Include="shortcut.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\shortFNN.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ILGPU" Version="1.5.1" />
<PackageReference Include="ILGPU.Algorithms" Version="1.5.1" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\A8.png" />
<Resource Include="Resources\arLeft.png" />
<Resource Include="Resources\arRight.png" />
<Resource Include="Resources\short13.png" />
<Resource Include="Resources\short255BA.png" />
<Resource Include="Resources\shortAntiBicubic.png" />
<Resource Include="Resources\shortBAcontrast.png" />
<Resource Include="Resources\shortBAExtremum.png" />
<Resource Include="Resources\shortBAmonochrome.png" />
<Resource Include="Resources\shortBAmonochrome2.png" />
<Resource Include="Resources\shortBASmoothContrast.png" />
<Resource Include="Resources\shortBil.png" />
<Resource Include="Resources\shortBilApprox.png" />
<Resource Include="Resources\shortBold.png" />
<Resource Include="Resources\shortContrast.png" />
<Resource Include="Resources\shortDerivativeBA.png" />
<Resource Include="Resources\shortFurry.png" />
<Resource Include="Resources\shortGPT.png" />
<Resource Include="Resources\shortRough.png" />
<Resource Include="Resources\shortSeparate.png" />
<Resource Include="Resources\shortSmooth.png" />
<Resource Include="Resources\shortSmoothCAS.png" />
<Resource Include="Resources\shortSmoothContin.png" />
<Resource Include="Resources\shortSmoothContr.png" />
<Resource Include="Resources\shortThin255BA.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Update="Strings.ru.Designer.cs">
<DependentUpon>Strings.ru.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
<Compile Update="Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Strings.ru.resx">
<LastGenOutput>Strings.ru.Designer.cs</LastGenOutput>
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddedResource>
<EmbeddedResource Update="Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>