markus / KCOM / KCOM.csproj @ a1cc6e1f
이력 | 보기 | 이력해설 | 다운로드 (76.1 KB)
1 | 787a4489 | KangIngu | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||
3 | 2b1f30fe | taeseongkim | <Import Project="..\packages\Microsoft.Net.Compilers.4.2.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.4.2.0\build\Microsoft.Net.Compilers.props')" /> |
4 | 30878507 | taeseongkim | <Import Project="..\packages\Obfuscar.2.2.29\build\obfuscar.props" Condition="Exists('..\packages\Obfuscar.2.2.29\build\obfuscar.props')" /> |
5 | 787a4489 | KangIngu | <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> |
6 | <PropertyGroup> |
||
7 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
||
8 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
||
9 | <ProjectGuid>{9F7C22A1-065C-4203-A570-F9EEA08F2344}</ProjectGuid> |
||
10 | <OutputType>WinExe</OutputType> |
||
11 | <RootNamespace>KCOM</RootNamespace> |
||
12 | <AssemblyName>KCOM</AssemblyName> |
||
13 | d4a60930 | djkim | <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> |
14 | 787a4489 | KangIngu | <FileAlignment>512</FileAlignment> |
15 | <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
||
16 | <WarningLevel>4</WarningLevel> |
||
17 | <NuGetPackageImportStamp> |
||
18 | </NuGetPackageImportStamp> |
||
19 | <TargetFrameworkProfile /> |
||
20 | cdb4b611 | 송근호 | <IsWebBootstrapper>false</IsWebBootstrapper> |
21 | cdfb57ff | taeseongkim | <PublishUrl>publish\</PublishUrl> |
22 | <Install>true</Install> |
||
23 | <InstallFrom>Disk</InstallFrom> |
||
24 | <UpdateEnabled>false</UpdateEnabled> |
||
25 | <UpdateMode>Foreground</UpdateMode> |
||
26 | <UpdateInterval>7</UpdateInterval> |
||
27 | <UpdateIntervalUnits>Days</UpdateIntervalUnits> |
||
28 | <UpdatePeriodically>false</UpdatePeriodically> |
||
29 | <UpdateRequired>false</UpdateRequired> |
||
30 | <MapFileExtensions>true</MapFileExtensions> |
||
31 | <ApplicationRevision>0</ApplicationRevision> |
||
32 | <ApplicationVersion>1.0.0.%2a</ApplicationVersion> |
||
33 | <UseApplicationTrust>false</UseApplicationTrust> |
||
34 | <BootstrapperEnabled>true</BootstrapperEnabled> |
||
35 | 787a4489 | KangIngu | </PropertyGroup> |
36 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
||
37 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
38 | <DebugSymbols>true</DebugSymbols> |
||
39 | <DebugType>full</DebugType> |
||
40 | <Optimize>false</Optimize> |
||
41 | <OutputPath>bin\Debug\</OutputPath> |
||
42 | cf1cc862 | taeseongkim | <DefineConstants>TRACE;DEBUG;_ACTIVE_LICENSE</DefineConstants> |
43 | 787a4489 | KangIngu | <ErrorReport>prompt</ErrorReport> |
44 | <WarningLevel>4</WarningLevel> |
||
45 | <Prefer32Bit>false</Prefer32Bit> |
||
46 | </PropertyGroup> |
||
47 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
48 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
49 | <DebugType>pdbonly</DebugType> |
||
50 | <Optimize>true</Optimize> |
||
51 | 524669d7 | humkyung | <OutputPath>..\Setup\</OutputPath> |
52 | 787a4489 | KangIngu | <DefineConstants>TRACE</DefineConstants> |
53 | <ErrorReport>prompt</ErrorReport> |
||
54 | <WarningLevel>4</WarningLevel> |
||
55 | <Prefer32Bit>false</Prefer32Bit> |
||
56 | cd81cca2 | humkyung | <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> |
57 | 787a4489 | KangIngu | </PropertyGroup> |
58 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |
||
59 | <DebugSymbols>true</DebugSymbols> |
||
60 | 2b1f30fe | taeseongkim | <OutputPath>bin\x64\Debug\</OutputPath> |
61 | 253c9730 | taeseongkim | <DefineConstants>TRACE;DEBUG;CUSTOM_BINDING;_BASIC_BINDING</DefineConstants> |
62 | 787a4489 | KangIngu | <DebugType>full</DebugType> |
63 | <PlatformTarget>x64</PlatformTarget> |
||
64 | <ErrorReport>prompt</ErrorReport> |
||
65 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
66 | 53880c83 | ljiyeon | <Prefer32Bit>false</Prefer32Bit> |
67 | cdfb57ff | taeseongkim | <WarningLevel>3</WarningLevel> |
68 | 787a4489 | KangIngu | </PropertyGroup> |
69 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> |
||
70 | bab93260 | humkyung | <OutputPath>..\Setup\</OutputPath> |
71 | 787a4489 | KangIngu | <DefineConstants>TRACE</DefineConstants> |
72 | ff01c725 | humkyung | <Optimize>false</Optimize> |
73 | 787a4489 | KangIngu | <DebugType>pdbonly</DebugType> |
74 | <PlatformTarget>x64</PlatformTarget> |
||
75 | <ErrorReport>prompt</ErrorReport> |
||
76 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
77 | 53880c83 | ljiyeon | <Prefer32Bit>false</Prefer32Bit> |
78 | 8cec2027 | humkyung | <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies> |
79 | 787a4489 | KangIngu | </PropertyGroup> |
80 | <PropertyGroup> |
||
81 | <ApplicationIcon>markup.ico</ApplicationIcon> |
||
82 | </PropertyGroup> |
||
83 | f9d42594 | djkim | <PropertyGroup> |
84 | <TargetZone>LocalIntranet</TargetZone> |
||
85 | </PropertyGroup> |
||
86 | <PropertyGroup> |
||
87 | <GenerateManifests>false</GenerateManifests> |
||
88 | </PropertyGroup> |
||
89 | <PropertyGroup> |
||
90 | <ApplicationManifest>Properties\app.manifest</ApplicationManifest> |
||
91 | </PropertyGroup> |
||
92 | f19ebe30 | djkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> |
93 | <DebugSymbols>true</DebugSymbols> |
||
94 | <OutputPath>bin\x86\Debug\</OutputPath> |
||
95 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
96 | <DebugType>full</DebugType> |
||
97 | <PlatformTarget>x86</PlatformTarget> |
||
98 | <ErrorReport>prompt</ErrorReport> |
||
99 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
100 | </PropertyGroup> |
||
101 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> |
||
102 | <OutputPath>bin\x86\Release\</OutputPath> |
||
103 | <DefineConstants>TRACE</DefineConstants> |
||
104 | <Optimize>true</Optimize> |
||
105 | <DebugType>pdbonly</DebugType> |
||
106 | <PlatformTarget>x86</PlatformTarget> |
||
107 | <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> |
||
108 | <ErrorReport>prompt</ErrorReport> |
||
109 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
110 | </PropertyGroup> |
||
111 | 9f55b953 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_HyoSung|AnyCPU'"> |
112 | <DebugSymbols>true</DebugSymbols> |
||
113 | <OutputPath>bin\Debug_HyoSung\</OutputPath> |
||
114 | 84605c0c | taeseongkim | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
115 | 9f55b953 | taeseongkim | <DebugType>full</DebugType> |
116 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
117 | <ErrorReport>prompt</ErrorReport> |
||
118 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
119 | 503cb09e | taeseongkim | <Prefer32Bit>false</Prefer32Bit> |
120 | 9f55b953 | taeseongkim | </PropertyGroup> |
121 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_HyoSung|x64'"> |
||
122 | <DebugSymbols>true</DebugSymbols> |
||
123 | <OutputPath>bin\x64\Debug_HyoSung\</OutputPath> |
||
124 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
125 | <WarningLevel>3</WarningLevel> |
||
126 | <DebugType>full</DebugType> |
||
127 | <PlatformTarget>x64</PlatformTarget> |
||
128 | <ErrorReport>prompt</ErrorReport> |
||
129 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
130 | </PropertyGroup> |
||
131 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_HyoSung|x86'"> |
||
132 | <DebugSymbols>true</DebugSymbols> |
||
133 | <OutputPath>bin\x86\Debug_HyoSung\</OutputPath> |
||
134 | 84605c0c | taeseongkim | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
135 | 9f55b953 | taeseongkim | <DebugType>full</DebugType> |
136 | 664ea2e1 | taeseongkim | <PlatformTarget>AnyCPU</PlatformTarget> |
137 | 9f55b953 | taeseongkim | <ErrorReport>prompt</ErrorReport> |
138 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
139 | 664ea2e1 | taeseongkim | <Prefer32Bit>false</Prefer32Bit> |
140 | 9f55b953 | taeseongkim | </PropertyGroup> |
141 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_DevDoftech|AnyCPU'"> |
||
142 | <DebugSymbols>true</DebugSymbols> |
||
143 | <OutputPath>bin\Debug_DevDoftech\</OutputPath> |
||
144 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
145 | <DebugType>full</DebugType> |
||
146 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
147 | <ErrorReport>prompt</ErrorReport> |
||
148 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
149 | </PropertyGroup> |
||
150 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_DevDoftech|x64'"> |
||
151 | <DebugSymbols>true</DebugSymbols> |
||
152 | <OutputPath>bin\x64\Debug_DevDoftech\</OutputPath> |
||
153 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
154 | <WarningLevel>3</WarningLevel> |
||
155 | <DebugType>full</DebugType> |
||
156 | <PlatformTarget>x64</PlatformTarget> |
||
157 | <ErrorReport>prompt</ErrorReport> |
||
158 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
159 | </PropertyGroup> |
||
160 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_DevDoftech|x86'"> |
||
161 | <DebugSymbols>true</DebugSymbols> |
||
162 | <OutputPath>bin\x86\Debug_DevDoftech\</OutputPath> |
||
163 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
164 | <DebugType>full</DebugType> |
||
165 | <PlatformTarget>x86</PlatformTarget> |
||
166 | <ErrorReport>prompt</ErrorReport> |
||
167 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
168 | <Prefer32Bit>true</Prefer32Bit> |
||
169 | </PropertyGroup> |
||
170 | f65e6c02 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_CadExport|AnyCPU'"> |
171 | <DebugSymbols>true</DebugSymbols> |
||
172 | <OutputPath>bin\Debug_CadExport\</OutputPath> |
||
173 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
174 | <DebugType>full</DebugType> |
||
175 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
176 | <ErrorReport>prompt</ErrorReport> |
||
177 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
178 | </PropertyGroup> |
||
179 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_CadExport|x64'"> |
||
180 | <DebugSymbols>true</DebugSymbols> |
||
181 | <OutputPath>bin\x64\Debug_CadExport\</OutputPath> |
||
182 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
183 | <WarningLevel>3</WarningLevel> |
||
184 | <DebugType>full</DebugType> |
||
185 | <PlatformTarget>x64</PlatformTarget> |
||
186 | <ErrorReport>prompt</ErrorReport> |
||
187 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
188 | </PropertyGroup> |
||
189 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_CadExport|x86'"> |
||
190 | <DebugSymbols>true</DebugSymbols> |
||
191 | <OutputPath>bin\x86\Debug_CadExport\</OutputPath> |
||
192 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
193 | <DebugType>full</DebugType> |
||
194 | <PlatformTarget>x86</PlatformTarget> |
||
195 | <ErrorReport>prompt</ErrorReport> |
||
196 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
197 | <Prefer32Bit>true</Prefer32Bit> |
||
198 | </PropertyGroup> |
||
199 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_SNI|AnyCPU'"> |
||
200 | <DebugSymbols>true</DebugSymbols> |
||
201 | <OutputPath>bin\Debug_SNI\</OutputPath> |
||
202 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
203 | <DebugType>full</DebugType> |
||
204 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
205 | <ErrorReport>prompt</ErrorReport> |
||
206 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
207 | </PropertyGroup> |
||
208 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_SNI|x64'"> |
||
209 | <DebugSymbols>true</DebugSymbols> |
||
210 | <OutputPath>bin\x64\Debug_SNI\</OutputPath> |
||
211 | 5639752b | taeseongkim | <DefineConstants>TRACE;DEBUG;_CUSTOM_BINDING;BASIC_BINDING</DefineConstants> |
212 | f65e6c02 | taeseongkim | <WarningLevel>3</WarningLevel> |
213 | <DebugType>full</DebugType> |
||
214 | <PlatformTarget>x64</PlatformTarget> |
||
215 | <ErrorReport>prompt</ErrorReport> |
||
216 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
217 | 2b1f30fe | taeseongkim | <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> |
218 | f65e6c02 | taeseongkim | </PropertyGroup> |
219 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_SNI|x86'"> |
||
220 | <DebugSymbols>true</DebugSymbols> |
||
221 | <OutputPath>bin\x86\Debug_SNI\</OutputPath> |
||
222 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
223 | <DebugType>full</DebugType> |
||
224 | <PlatformTarget>x86</PlatformTarget> |
||
225 | <ErrorReport>prompt</ErrorReport> |
||
226 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
227 | <Prefer32Bit>true</Prefer32Bit> |
||
228 | </PropertyGroup> |
||
229 | 80856edb | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Hyosung|AnyCPU'"> |
230 | <DebugSymbols>true</DebugSymbols> |
||
231 | e8557bd7 | taeseongkim | <OutputPath>..\Release\HyoSung\AnyCPU\</OutputPath> |
232 | 84605c0c | taeseongkim | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
233 | 80856edb | taeseongkim | <DebugType>full</DebugType> |
234 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
235 | <ErrorReport>prompt</ErrorReport> |
||
236 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
237 | 7d8e1b57 | taeseongkim | <Prefer32Bit>false</Prefer32Bit> |
238 | <Optimize>true</Optimize> |
||
239 | 80856edb | taeseongkim | </PropertyGroup> |
240 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Hyosung|x64'"> |
||
241 | <DebugSymbols>true</DebugSymbols> |
||
242 | <OutputPath>bin\x64\Release_Hyosung\</OutputPath> |
||
243 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
244 | <WarningLevel>3</WarningLevel> |
||
245 | <DebugType>full</DebugType> |
||
246 | <PlatformTarget>x64</PlatformTarget> |
||
247 | <ErrorReport>prompt</ErrorReport> |
||
248 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
249 | <Prefer32Bit>true</Prefer32Bit> |
||
250 | </PropertyGroup> |
||
251 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Hyosung|x86'"> |
||
252 | <DebugSymbols>true</DebugSymbols> |
||
253 | e8557bd7 | taeseongkim | <OutputPath>..\Release\HyoSung\x86\</OutputPath> |
254 | 84605c0c | taeseongkim | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
255 | 80856edb | taeseongkim | <DebugType>full</DebugType> |
256 | <PlatformTarget>x86</PlatformTarget> |
||
257 | <ErrorReport>prompt</ErrorReport> |
||
258 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
259 | <Prefer32Bit>true</Prefer32Bit> |
||
260 | 07b7bd24 | taeseongkim | </PropertyGroup> |
261 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_PEMSS|AnyCPU'"> |
||
262 | <DebugSymbols>true</DebugSymbols> |
||
263 | <OutputPath>bin\Release_PEMSS\</OutputPath> |
||
264 | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
||
265 | <Optimize>true</Optimize> |
||
266 | <DebugType>full</DebugType> |
||
267 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
268 | <ErrorReport>prompt</ErrorReport> |
||
269 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
270 | </PropertyGroup> |
||
271 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_PEMSS|x64'"> |
||
272 | <DebugSymbols>true</DebugSymbols> |
||
273 | <OutputPath>bin\x64\Release_PEMSS\</OutputPath> |
||
274 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
275 | <WarningLevel>3</WarningLevel> |
||
276 | <DebugType>full</DebugType> |
||
277 | <PlatformTarget>x64</PlatformTarget> |
||
278 | <ErrorReport>prompt</ErrorReport> |
||
279 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
280 | <Prefer32Bit>true</Prefer32Bit> |
||
281 | </PropertyGroup> |
||
282 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_PEMSS|x86'"> |
||
283 | <DebugSymbols>true</DebugSymbols> |
||
284 | <OutputPath>bin\x86\Release_PEMSS\</OutputPath> |
||
285 | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
||
286 | <DebugType>full</DebugType> |
||
287 | <PlatformTarget>x86</PlatformTarget> |
||
288 | <ErrorReport>prompt</ErrorReport> |
||
289 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
290 | <Prefer32Bit>true</Prefer32Bit> |
||
291 | 80856edb | taeseongkim | </PropertyGroup> |
292 | f882e166 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_Daelim|AnyCPU'"> |
293 | <DebugSymbols>true</DebugSymbols> |
||
294 | <OutputPath>bin\Debug_Daelim\</OutputPath> |
||
295 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
296 | <DebugType>full</DebugType> |
||
297 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
298 | <ErrorReport>prompt</ErrorReport> |
||
299 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
300 | </PropertyGroup> |
||
301 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_Daelim|x64'"> |
||
302 | <DebugSymbols>true</DebugSymbols> |
||
303 | <OutputPath>bin\x64\Debug_Daelim\</OutputPath> |
||
304 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
305 | <WarningLevel>3</WarningLevel> |
||
306 | <DebugType>full</DebugType> |
||
307 | <PlatformTarget>x64</PlatformTarget> |
||
308 | <ErrorReport>prompt</ErrorReport> |
||
309 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
310 | </PropertyGroup> |
||
311 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_Daelim|x86'"> |
||
312 | <DebugSymbols>true</DebugSymbols> |
||
313 | <OutputPath>bin\x86\Debug_Daelim\</OutputPath> |
||
314 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
315 | <DebugType>full</DebugType> |
||
316 | <PlatformTarget>x86</PlatformTarget> |
||
317 | <ErrorReport>prompt</ErrorReport> |
||
318 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
319 | <Prefer32Bit>true</Prefer32Bit> |
||
320 | </PropertyGroup> |
||
321 | 9d5b4bc2 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Daelim_RemoteTest|AnyCPU'"> |
322 | <DebugSymbols>true</DebugSymbols> |
||
323 | <OutputPath>bin\Daelim_RemoteTest\</OutputPath> |
||
324 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
325 | <DebugType>full</DebugType> |
||
326 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
327 | <ErrorReport>prompt</ErrorReport> |
||
328 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
329 | <Prefer32Bit>true</Prefer32Bit> |
||
330 | </PropertyGroup> |
||
331 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Daelim_RemoteTest|x64'"> |
||
332 | <DebugSymbols>true</DebugSymbols> |
||
333 | <OutputPath>bin\x64\Daelim_RemoteTest\</OutputPath> |
||
334 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
335 | <WarningLevel>3</WarningLevel> |
||
336 | <DebugType>full</DebugType> |
||
337 | <PlatformTarget>x64</PlatformTarget> |
||
338 | <ErrorReport>prompt</ErrorReport> |
||
339 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
340 | <Prefer32Bit>true</Prefer32Bit> |
||
341 | </PropertyGroup> |
||
342 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Daelim_RemoteTest|x86'"> |
||
343 | <DebugSymbols>true</DebugSymbols> |
||
344 | <OutputPath>bin\x86\Daelim_RemoteTest\</OutputPath> |
||
345 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
346 | <DebugType>full</DebugType> |
||
347 | <PlatformTarget>x86</PlatformTarget> |
||
348 | <ErrorReport>prompt</ErrorReport> |
||
349 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
350 | <Prefer32Bit>true</Prefer32Bit> |
||
351 | </PropertyGroup> |
||
352 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Default|AnyCPU'"> |
||
353 | <DebugSymbols>true</DebugSymbols> |
||
354 | <OutputPath>..\Setup\Release_Default\</OutputPath> |
||
355 | cf1cc862 | taeseongkim | <DefineConstants>TRACE;DEBUG;ACTIVE_LICENSE</DefineConstants> |
356 | 9d5b4bc2 | taeseongkim | <DebugType>full</DebugType> |
357 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
358 | <ErrorReport>prompt</ErrorReport> |
||
359 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
360 | 664ea2e1 | taeseongkim | <Prefer32Bit>false</Prefer32Bit> |
361 | 9d5b4bc2 | taeseongkim | </PropertyGroup> |
362 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Default|x64'"> |
||
363 | <DebugSymbols>true</DebugSymbols> |
||
364 | a197bf6f | taeseongkim | <OutputPath>bin\x64\Release_Default\</OutputPath> |
365 | 253c9730 | taeseongkim | <DefineConstants>TRACE;DEBUG;_CUSTOM_BINDING;BASIC_BINDING</DefineConstants> |
366 | 9d5b4bc2 | taeseongkim | <WarningLevel>3</WarningLevel> |
367 | <DebugType>full</DebugType> |
||
368 | <PlatformTarget>x64</PlatformTarget> |
||
369 | <ErrorReport>prompt</ErrorReport> |
||
370 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
371 | </PropertyGroup> |
||
372 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Default|x86'"> |
||
373 | <DebugSymbols>true</DebugSymbols> |
||
374 | <OutputPath>bin\x86\Release_Default\</OutputPath> |
||
375 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
376 | <DebugType>full</DebugType> |
||
377 | 664ea2e1 | taeseongkim | <PlatformTarget>AnyCPU</PlatformTarget> |
378 | 9d5b4bc2 | taeseongkim | <ErrorReport>prompt</ErrorReport> |
379 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
380 | 664ea2e1 | taeseongkim | <Prefer32Bit>false</Prefer32Bit> |
381 | 9d5b4bc2 | taeseongkim | </PropertyGroup> |
382 | 77cdac33 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_BSENG|AnyCPU'"> |
383 | <DebugSymbols>true</DebugSymbols> |
||
384 | <OutputPath>bin\Release_BSENG\</OutputPath> |
||
385 | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
||
386 | <Optimize>true</Optimize> |
||
387 | <DebugType>full</DebugType> |
||
388 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
389 | <ErrorReport>prompt</ErrorReport> |
||
390 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
391 | </PropertyGroup> |
||
392 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_BSENG|x64'"> |
||
393 | <DebugSymbols>true</DebugSymbols> |
||
394 | <OutputPath>bin\x64\Release_BSENG\</OutputPath> |
||
395 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
396 | <WarningLevel>3</WarningLevel> |
||
397 | <DebugType>full</DebugType> |
||
398 | <PlatformTarget>x64</PlatformTarget> |
||
399 | <ErrorReport>prompt</ErrorReport> |
||
400 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
401 | <Prefer32Bit>true</Prefer32Bit> |
||
402 | </PropertyGroup> |
||
403 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_BSENG|x86'"> |
||
404 | <DebugSymbols>true</DebugSymbols> |
||
405 | <OutputPath>bin\x86\Release_BSENG\</OutputPath> |
||
406 | <DefineConstants>TRACE;DEBUG;Hyosung</DefineConstants> |
||
407 | <DebugType>full</DebugType> |
||
408 | <PlatformTarget>x86</PlatformTarget> |
||
409 | <ErrorReport>prompt</ErrorReport> |
||
410 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
411 | <Prefer32Bit>true</Prefer32Bit> |
||
412 | </PropertyGroup> |
||
413 | 195f079d | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_DIG|AnyCPU'"> |
414 | <DebugSymbols>true</DebugSymbols> |
||
415 | <OutputPath>bin\Debug_DIG\</OutputPath> |
||
416 | <DefineConstants>TRACE;DEBUG;_ACTIVE_LICENSE</DefineConstants> |
||
417 | <DebugType>full</DebugType> |
||
418 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
419 | <LangVersion>7.3</LangVersion> |
||
420 | <ErrorReport>prompt</ErrorReport> |
||
421 | </PropertyGroup> |
||
422 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_DIG|x64'"> |
||
423 | <DebugSymbols>true</DebugSymbols> |
||
424 | <OutputPath>bin\x64\Debug_DIG\</OutputPath> |
||
425 | a8aec13a | taeseongkim | <DefineConstants>TRACE;DEBUG;CUSTOM_BINDING;_BASIC_BINDING</DefineConstants> |
426 | 195f079d | taeseongkim | <WarningLevel>3</WarningLevel> |
427 | <DebugType>full</DebugType> |
||
428 | <PlatformTarget>x64</PlatformTarget> |
||
429 | <LangVersion>7.3</LangVersion> |
||
430 | <ErrorReport>prompt</ErrorReport> |
||
431 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
432 | </PropertyGroup> |
||
433 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_DIG|x86'"> |
||
434 | <DebugSymbols>true</DebugSymbols> |
||
435 | <OutputPath>bin\x86\Debug_DIG\</OutputPath> |
||
436 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
437 | <DebugType>full</DebugType> |
||
438 | <PlatformTarget>x86</PlatformTarget> |
||
439 | <LangVersion>7.3</LangVersion> |
||
440 | <ErrorReport>prompt</ErrorReport> |
||
441 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
442 | <Prefer32Bit>true</Prefer32Bit> |
||
443 | </PropertyGroup> |
||
444 | fdfa126d | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_Etech|AnyCPU'"> |
445 | <DebugSymbols>true</DebugSymbols> |
||
446 | <OutputPath>bin\Debug_Etech\</OutputPath> |
||
447 | <DefineConstants>TRACE;DEBUG;_ACTIVE_LICENSE</DefineConstants> |
||
448 | <DebugType>full</DebugType> |
||
449 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
450 | <LangVersion>7.3</LangVersion> |
||
451 | <ErrorReport>prompt</ErrorReport> |
||
452 | <Prefer32Bit>true</Prefer32Bit> |
||
453 | </PropertyGroup> |
||
454 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_Etech|x64'"> |
||
455 | <DebugSymbols>true</DebugSymbols> |
||
456 | <OutputPath>bin\x64\Debug_Etech\</OutputPath> |
||
457 | <DefineConstants>TRACE;DEBUG;_CUSTOM_BINDING;BASIC_BINDING</DefineConstants> |
||
458 | <WarningLevel>3</WarningLevel> |
||
459 | <DebugType>full</DebugType> |
||
460 | <PlatformTarget>x64</PlatformTarget> |
||
461 | <LangVersion>7.3</LangVersion> |
||
462 | <ErrorReport>prompt</ErrorReport> |
||
463 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
464 | <Prefer32Bit>true</Prefer32Bit> |
||
465 | </PropertyGroup> |
||
466 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_Etech|x86'"> |
||
467 | <DebugSymbols>true</DebugSymbols> |
||
468 | <OutputPath>bin\x86\Debug_Etech\</OutputPath> |
||
469 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
470 | <DebugType>full</DebugType> |
||
471 | <PlatformTarget>x86</PlatformTarget> |
||
472 | <LangVersion>7.3</LangVersion> |
||
473 | <ErrorReport>prompt</ErrorReport> |
||
474 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
475 | <Prefer32Bit>true</Prefer32Bit> |
||
476 | </PropertyGroup> |
||
477 | fa3271c7 | taeseongkim | <PropertyGroup> |
478 | <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
||
479 | </PropertyGroup> |
||
480 | 787a4489 | KangIngu | <ItemGroup> |
481 | 3b938959 | taeseongkim | <Reference Include="Bytescout.PDFExtractor, Version=9.0.0.3095, Culture=neutral, PublicKeyToken=f7dd1bd9d40a50eb, processorArchitecture=MSIL"> |
482 | <HintPath>..\packages\Bytescout.PDFExtractor.9.0.0.3095\lib\net40\Bytescout.PDFExtractor.dll</HintPath> |
||
483 | 79f3f21a | djkim | </Reference> |
484 | 3b938959 | taeseongkim | <Reference Include="Bytescout.PDFExtractor.OCRExtension, Version=9.0.0.3095, Culture=neutral, PublicKeyToken=f7dd1bd9d40a50eb, processorArchitecture=MSIL"> |
485 | <HintPath>..\packages\Bytescout.PDFExtractor.9.0.0.3095\lib\net40\Bytescout.PDFExtractor.OCRExtension.dll</HintPath> |
||
486 | 5a8b818e | humkyung | </Reference> |
487 | 9d5b4bc2 | taeseongkim | <Reference Include="ConfigParser, Version=0.3.4.3, Culture=neutral, processorArchitecture=MSIL"> |
488 | <HintPath>..\packages\Salaros.ConfigParser.0.3.4\lib\net45\ConfigParser.dll</HintPath> |
||
489 | </Reference> |
||
490 | aa73d664 | 이지연 | <Reference Include="GemBox.Spreadsheet, Version=39.3.30.1215, Culture=neutral, PublicKeyToken=b1b72c69714d4847, processorArchitecture=MSIL"> |
491 | <HintPath>..\packages\GemBox.Spreadsheet.39.3.30.1215\lib\net30\GemBox.Spreadsheet.dll</HintPath> |
||
492 | </Reference> |
||
493 | 8b52c487 | djkim | <Reference Include="itextsharp"> |
494 | <HintPath>..\packages\iTextSharp.5.5.12\lib\itextsharp.dll</HintPath> |
||
495 | 787a4489 | KangIngu | </Reference> |
496 | a7346d3c | humkyung | <Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL"> |
497 | <HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath> |
||
498 | </Reference> |
||
499 | 787a4489 | KangIngu | <Reference Include="Microsoft.AspNet.SignalR.Client"> |
500 | <HintPath>..\packages\Microsoft.AspNet.SignalR.Client.2.2.3\lib\net40\Microsoft.AspNet.SignalR.Client.dll</HintPath> |
||
501 | </Reference> |
||
502 | <Reference Include="Microsoft.Expression.Interactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> |
||
503 | <HintPath>..\packages\System.Windows.Interactivity.WPF.2.0.20525\lib\net40\Microsoft.Expression.Interactions.dll</HintPath> |
||
504 | <Private>True</Private> |
||
505 | </Reference> |
||
506 | b60e844d | taeseongkim | <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> |
507 | <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath> |
||
508 | 787a4489 | KangIngu | </Reference> |
509 | 3b938959 | taeseongkim | <Reference Include="SharpVectors.Converters.Wpf, Version=1.8.4.0, Culture=neutral, PublicKeyToken=b532964b8548be77, processorArchitecture=MSIL"> |
510 | <HintPath>..\packages\SharpVectors.Wpf.1.8.4\lib\net46\SharpVectors.Converters.Wpf.dll</HintPath> |
||
511 | f1f822e9 | taeseongkim | </Reference> |
512 | 3b938959 | taeseongkim | <Reference Include="SharpVectors.Core, Version=1.8.4.0, Culture=neutral, PublicKeyToken=7407205e337c98ef, processorArchitecture=MSIL"> |
513 | <HintPath>..\packages\SharpVectors.Wpf.1.8.4\lib\net46\SharpVectors.Core.dll</HintPath> |
||
514 | f1f822e9 | taeseongkim | </Reference> |
515 | 3b938959 | taeseongkim | <Reference Include="SharpVectors.Css, Version=1.8.4.0, Culture=neutral, PublicKeyToken=7a46e3f532fdb787, processorArchitecture=MSIL"> |
516 | <HintPath>..\packages\SharpVectors.Wpf.1.8.4\lib\net46\SharpVectors.Css.dll</HintPath> |
||
517 | f1f822e9 | taeseongkim | </Reference> |
518 | 3b938959 | taeseongkim | <Reference Include="SharpVectors.Dom, Version=1.8.4.0, Culture=neutral, PublicKeyToken=517340b6277b1a7a, processorArchitecture=MSIL"> |
519 | <HintPath>..\packages\SharpVectors.Wpf.1.8.4\lib\net46\SharpVectors.Dom.dll</HintPath> |
||
520 | f1f822e9 | taeseongkim | </Reference> |
521 | 3b938959 | taeseongkim | <Reference Include="SharpVectors.Model, Version=1.8.4.0, Culture=neutral, PublicKeyToken=2236cfc76b505845, processorArchitecture=MSIL"> |
522 | <HintPath>..\packages\SharpVectors.Wpf.1.8.4\lib\net46\SharpVectors.Model.dll</HintPath> |
||
523 | f1f822e9 | taeseongkim | </Reference> |
524 | 3b938959 | taeseongkim | <Reference Include="SharpVectors.Rendering.Wpf, Version=1.8.4.0, Culture=neutral, PublicKeyToken=d0902381100df30e, processorArchitecture=MSIL"> |
525 | <HintPath>..\packages\SharpVectors.Wpf.1.8.4\lib\net46\SharpVectors.Rendering.Wpf.dll</HintPath> |
||
526 | f1f822e9 | taeseongkim | </Reference> |
527 | 3b938959 | taeseongkim | <Reference Include="SharpVectors.Runtime.Wpf, Version=1.8.4.0, Culture=neutral, PublicKeyToken=d16e717f0a981fb9, processorArchitecture=MSIL"> |
528 | <HintPath>..\packages\SharpVectors.Wpf.1.8.4\lib\net46\SharpVectors.Runtime.Wpf.dll</HintPath> |
||
529 | 53880c83 | ljiyeon | </Reference> |
530 | 787a4489 | KangIngu | <Reference Include="System" /> |
531 | <Reference Include="System.ComponentModel.DataAnnotations" /> |
||
532 | <Reference Include="System.Configuration" /> |
||
533 | <Reference Include="System.Data" /> |
||
534 | <Reference Include="System.Data.Entity" /> |
||
535 | <Reference Include="System.Drawing" /> |
||
536 | <Reference Include="System.EnterpriseServices" /> |
||
537 | 3b938959 | taeseongkim | <Reference Include="System.IdentityModel" /> |
538 | 787a4489 | KangIngu | <Reference Include="System.Management" /> |
539 | <Reference Include="System.Net" /> |
||
540 | b60e844d | taeseongkim | <Reference Include="System.Net.Http" /> |
541 | 787a4489 | KangIngu | <Reference Include="System.Runtime.Serialization" /> |
542 | <Reference Include="System.ServiceModel" /> |
||
543 | 90a0bfa9 | djkim | <Reference Include="System.Web" /> |
544 | 787a4489 | KangIngu | <Reference Include="System.Web.Services" /> |
545 | <Reference Include="System.Windows.Forms" /> |
||
546 | <Reference Include="System.Windows.Interactivity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> |
||
547 | <HintPath>..\packages\System.Windows.Interactivity.WPF.2.0.20525\lib\net40\System.Windows.Interactivity.dll</HintPath> |
||
548 | <Private>True</Private> |
||
549 | </Reference> |
||
550 | <Reference Include="System.Xml" /> |
||
551 | <Reference Include="Microsoft.CSharp" /> |
||
552 | <Reference Include="System.Core" /> |
||
553 | <Reference Include="System.Xml.Linq" /> |
||
554 | <Reference Include="System.Data.DataSetExtensions" /> |
||
555 | <Reference Include="System.Xaml"> |
||
556 | <RequiredTargetFramework>4.0</RequiredTargetFramework> |
||
557 | </Reference> |
||
558 | a8dbdf61 | ljiyeon | <Reference Include="Telerik.Windows.Controls, Version=2019.1.220.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
559 | 34ac8db7 | humkyung | <SpecificVersion>False</SpecificVersion> |
560 | a8dbdf61 | ljiyeon | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Controls.dll</HintPath> |
561 | 8b52c487 | djkim | </Reference> |
562 | a8dbdf61 | ljiyeon | <Reference Include="Telerik.Windows.Controls.Docking, Version=2019.1.220.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
563 | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Controls.Docking.dll</HintPath> |
||
564 | <Private>True</Private> |
||
565 | 8b52c487 | djkim | </Reference> |
566 | a8dbdf61 | ljiyeon | <Reference Include="Telerik.Windows.Controls.GridView, Version=2019.1.220.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
567 | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Controls.GridView.dll</HintPath> |
||
568 | <Private>True</Private> |
||
569 | 8b52c487 | djkim | </Reference> |
570 | fa3271c7 | taeseongkim | <Reference Include="Telerik.Windows.Controls.Input, Version=2019.3.917.45, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
571 | <SpecificVersion>False</SpecificVersion> |
||
572 | a8dbdf61 | ljiyeon | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Controls.Input.dll</HintPath> |
573 | 8b52c487 | djkim | </Reference> |
574 | a8dbdf61 | ljiyeon | <Reference Include="Telerik.Windows.Controls.Navigation, Version=2019.1.220.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
575 | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Controls.Navigation.dll</HintPath> |
||
576 | <Private>True</Private> |
||
577 | 8b52c487 | djkim | </Reference> |
578 | a8dbdf61 | ljiyeon | <Reference Include="Telerik.Windows.Controls.RibbonView, Version=2019.1.220.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
579 | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Controls.RibbonView.dll</HintPath> |
||
580 | <Private>True</Private> |
||
581 | 8b52c487 | djkim | </Reference> |
582 | a8dbdf61 | ljiyeon | <Reference Include="Telerik.Windows.Data, Version=2019.1.220.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
583 | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Data.dll</HintPath> |
||
584 | <Private>True</Private> |
||
585 | 787a4489 | KangIngu | </Reference> |
586 | 684ef11c | ljiyeon | <Reference Include="Telerik.Windows.Themes.VisualStudio2013, Version=2018.1.122.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL"> |
587 | <SpecificVersion>False</SpecificVersion> |
||
588 | fa3271c7 | taeseongkim | <HintPath>..\lib\RCWPF\2019.1.220.40\Telerik.Windows.Themes.VisualStudio2013.dll</HintPath> |
589 | 684ef11c | ljiyeon | </Reference> |
590 | 787a4489 | KangIngu | <Reference Include="ToggleSwitch, Version=1.1.2.0, Culture=neutral, PublicKeyToken=8637099990568f75, processorArchitecture=MSIL"> |
591 | <HintPath>..\packages\ToggleSwitch.1.1.2\lib\net40-client\ToggleSwitch.dll</HintPath> |
||
592 | </Reference> |
||
593 | <Reference Include="UIAutomationProvider" /> |
||
594 | <Reference Include="UIAutomationTypes" /> |
||
595 | 6a19b48d | taeseongkim | <Reference Include="WcfExtensions.ServiceModel, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> |
596 | <HintPath>..\packages\WCFExtensions.1.0.0\lib\WcfExtensions.ServiceModel.dll</HintPath> |
||
597 | </Reference> |
||
598 | 787a4489 | KangIngu | <Reference Include="WindowsBase" /> |
599 | <Reference Include="PresentationCore" /> |
||
600 | <Reference Include="PresentationFramework" /> |
||
601 | </ItemGroup> |
||
602 | <ItemGroup> |
||
603 | <ApplicationDefinition Include="App.xaml"> |
||
604 | <Generator>MSBuild:Compile</Generator> |
||
605 | <SubType>Designer</SubType> |
||
606 | </ApplicationDefinition> |
||
607 | 6af42ff0 | taeseongkim | <Compile Include="Behaviors\ListViewColumnSizeAutoBehavior.cs" /> |
608 | f65e6c02 | taeseongkim | <Compile Include="Behaviors\RadListBoxDragVisualProvider.cs" /> |
609 | 4fcb686a | taeseongkim | <Compile Include="Behaviors\SpecialcharRemove.cs" /> |
610 | aff63364 | taeseongkim | <Compile Include="Behaviors\WindowBehavior.cs" /> |
611 | d18ea2bd | taeseongkim | <Compile Include="Common\Converter\ColorListToBrushConverter.cs" /> |
612 | 3abe8d4e | taeseongkim | <Compile Include="Common\Converter\StringToColorConverter.cs" /> |
613 | 38d69491 | taeseongkim | <Compile Include="Common\Converter\NullToCollapsedConverter.cs" /> |
614 | f87dfb18 | taeseongkim | <Compile Include="Common\Converter\ZeroToCollapsedConverter.cs" /> |
615 | 6b6e937c | taeseongkim | <Compile Include="Common\DataSaveTask.cs" /> |
616 | 787a4489 | KangIngu | <Compile Include="Common\Check_Inferface.cs" /> |
617 | c73426a9 | ljiyeon | <Compile Include="Common\Check_Uri.cs" /> |
618 | 24678e06 | humkyung | <Compile Include="Common\Commons.cs" /> |
619 | 787a4489 | KangIngu | <Compile Include="Common\Converter\CmpUrlChange.cs" /> |
620 | <Compile Include="Common\Converter\CommentTypeImgConverter.cs" /> |
||
621 | 5a8b818e | humkyung | <Compile Include="Common\Converter\enumStringColorConverter.cs" /> |
622 | <Compile Include="Common\Converter\enumStringConverter.cs" /> |
||
623 | 787a4489 | KangIngu | <Compile Include="Common\Converter\PDFVisibleConverter.cs" /> |
624 | 53880c83 | ljiyeon | <Compile Include="Common\Converter\SvgConverter.cs" /> |
625 | <Compile Include="Common\Converter\SvgImageConverter.cs" /> |
||
626 | 787a4489 | KangIngu | <Compile Include="Common\FileStreamToBase64.cs" /> |
627 | c5519c44 | taeseongkim | <Compile Include="Common\ImageAsyncHelper.cs" /> |
628 | cdfb57ff | taeseongkim | <Compile Include="Common\ImageSourceHelper.cs" /> |
629 | e0cfc73c | ljiyeon | <Compile Include="Common\ISplashMessage.cs" /> |
630 | b74a9c91 | taeseongkim | <Compile Include="Common\MacroItem.cs" /> |
631 | 8e5a4a6a | taeseongkim | <Compile Include="Common\MarkupUserInfo.cs" /> |
632 | 8de55603 | taeseongkim | <Compile Include="Common\MathHelper.cs" /> |
633 | b74a9c91 | taeseongkim | <Compile Include="Common\MenuItem.cs" /> |
634 | 6b6e937c | taeseongkim | <Compile Include="Common\MouseInputBase.cs" /> |
635 | 3abe8d4e | taeseongkim | <Compile Include="Controls\ColorList.xaml.cs"> |
636 | <DependentUpon>ColorList.xaml</DependentUpon> |
||
637 | </Compile> |
||
638 | d33ef543 | taeseongkim | <Compile Include="Controls\CustomWindow.cs" /> |
639 | b74a9c91 | taeseongkim | <Compile Include="Controls\MacroEdit.xaml.cs"> |
640 | <DependentUpon>MacroEdit.xaml</DependentUpon> |
||
641 | </Compile> |
||
642 | c206d293 | taeseongkim | <Compile Include="Controls\PasswordBoxUtilities.cs" /> |
643 | cf1cc862 | taeseongkim | <Compile Include="Controls\SignManager.xaml.cs"> |
644 | <DependentUpon>SignManager.xaml</DependentUpon> |
||
645 | </Compile> |
||
646 | 2007ecaa | taeseongkim | <Compile Include="Extensions\DownloadProcess.cs" /> |
647 | eeb0a39c | taeseongkim | <Compile Include="Extensions\LinqExtension.cs" /> |
648 | b74a9c91 | taeseongkim | <Compile Include="Extensions\MacroHelper.cs" /> |
649 | eeb0a39c | taeseongkim | <Compile Include="PageManager\PageItem.cs" /> |
650 | 2007ecaa | taeseongkim | <Compile Include="PageManager\PageLoadCompletedEventArgs.cs" /> |
651 | eeb0a39c | taeseongkim | <Compile Include="PageManager\PageStorage.cs" /> |
652 | 959b3ef2 | humkyung | <Compile Include="Common\SelectionSet.cs" /> |
653 | 6b6e937c | taeseongkim | <Compile Include="Connected Services\KcomService\Reference.cs"> |
654 | <AutoGen>True</AutoGen> |
||
655 | <DesignTime>True</DesignTime> |
||
656 | <DependentUpon>Reference.svcmap</DependentUpon> |
||
657 | </Compile> |
||
658 | 787a4489 | KangIngu | <Compile Include="Connected Services\ServiceDeepView\Reference.cs"> |
659 | <AutoGen>True</AutoGen> |
||
660 | <DesignTime>True</DesignTime> |
||
661 | <DependentUpon>Reference.svcmap</DependentUpon> |
||
662 | </Compile> |
||
663 | 5a8b818e | humkyung | <Compile Include="Controls\addToFavoriteWindow_Internal.xaml.cs"> |
664 | <DependentUpon>addToFavoriteWindow_Internal.xaml</DependentUpon> |
||
665 | </Compile> |
||
666 | 787a4489 | KangIngu | <Compile Include="Controls\Alert.xaml.cs"> |
667 | <DependentUpon>Alert.xaml</DependentUpon> |
||
668 | </Compile> |
||
669 | <Compile Include="Controls\CheckList.xaml.cs"> |
||
670 | <DependentUpon>CheckList.xaml</DependentUpon> |
||
671 | </Compile> |
||
672 | <Compile Include="Controls\CheckList_Detail.xaml.cs"> |
||
673 | <DependentUpon>CheckList_Detail.xaml</DependentUpon> |
||
674 | </Compile> |
||
675 | 8e2743a3 | humkyung | <Compile Include="Controls\CheckList_Status.xaml.cs"> |
676 | <DependentUpon>CheckList_Status.xaml</DependentUpon> |
||
677 | </Compile> |
||
678 | 787a4489 | KangIngu | <Compile Include="Controls\CommantImage.xaml.cs"> |
679 | <DependentUpon>CommantImage.xaml</DependentUpon> |
||
680 | </Compile> |
||
681 | 92442e4a | taeseongkim | <Compile Include="Controls\DecodeImage.cs" /> |
682 | 5a8b818e | humkyung | <Compile Include="Controls\editToFavoriteWindow_Internal.xaml.cs"> |
683 | <DependentUpon>editToFavoriteWindow_Internal.xaml</DependentUpon> |
||
684 | </Compile> |
||
685 | <Compile Include="Controls\FavoritePanel.xaml.cs"> |
||
686 | <DependentUpon>FavoritePanel.xaml</DependentUpon> |
||
687 | </Compile> |
||
688 | 787a4489 | KangIngu | <Compile Include="Controls\Panorama.xaml.cs"> |
689 | <DependentUpon>Panorama.xaml</DependentUpon> |
||
690 | </Compile> |
||
691 | 882f0fcf | djkim | <Compile Include="Controls\ProgressControl.xaml.cs"> |
692 | <DependentUpon>ProgressControl.xaml</DependentUpon> |
||
693 | </Compile> |
||
694 | 787a4489 | KangIngu | <Compile Include="Controls\SearchPanel.xaml.cs"> |
695 | <DependentUpon>SearchPanel.xaml</DependentUpon> |
||
696 | </Compile> |
||
697 | <Compile Include="Controls\Symbol.xaml.cs"> |
||
698 | <DependentUpon>Symbol.xaml</DependentUpon> |
||
699 | </Compile> |
||
700 | 53880c83 | ljiyeon | <Compile Include="Controls\SymbolPrompt.xaml.cs"> |
701 | <DependentUpon>SymbolPrompt.xaml</DependentUpon> |
||
702 | </Compile> |
||
703 | 35a96e24 | humkyung | <Compile Include="Events\ConsolidateCommand.cs" /> |
704 | b37ef4b3 | humkyung | <Compile Include="Events\CopyCommand.cs" /> |
705 | f513c215 | humkyung | <Compile Include="Events\CreateCommand.cs" /> |
706 | b37ef4b3 | humkyung | <Compile Include="Events\CutCommand.cs" /> |
707 | f816dd63 | humkyung | <Compile Include="Events\Move.cs" /> |
708 | b37ef4b3 | humkyung | <Compile Include="Events\PasteCommand.cs" /> |
709 | d4bde724 | humkyung | <Compile Include="Events\TeamConsolidateCommand.cs" /> |
710 | d128ceb2 | humkyung | <Compile Include="Events\UndoCommand.cs" /> |
711 | f816dd63 | humkyung | <Compile Include="Events\SaveCommand.cs" /> |
712 | <Compile Include="Events\RedoCommand.cs" /> |
||
713 | c7fde400 | taeseongkim | <Compile Include="Extensions\MarkupVisitHelper.cs" /> |
714 | 2089959a | taeseongkim | <Compile Include="Extensions\MatrixHelper.cs" /> |
715 | 8e5a4a6a | taeseongkim | <Compile Include="Extensions\MouseHelper.cs" /> |
716 | eeb0a39c | taeseongkim | <Compile Include="Extensions\TaskExtensions.cs" /> |
717 | 8e5a4a6a | taeseongkim | <Compile Include="Extensions\VisualHelper.cs" /> |
718 | aff63364 | taeseongkim | <Compile Include="Extensions\WindowHelper.cs" /> |
719 | 0f065e57 | ljiyeon | <Compile Include="Logger.cs" /> |
720 | 787a4489 | KangIngu | <Compile Include="Messenger\ConversationView.xaml.cs"> |
721 | <DependentUpon>ConversationView.xaml</DependentUpon> |
||
722 | </Compile> |
||
723 | <Compile Include="Messenger\MessageBase.cs" /> |
||
724 | cf2671a6 | ljiyeon | <Compile Include="Views\SplashScreenWindow.xaml.cs"> |
725 | <DependentUpon>SplashScreenWindow.xaml</DependentUpon> |
||
726 | </Compile> |
||
727 | 74abcf6f | taeseongkim | <Compile Include="VistaSecurity.cs" /> |
728 | 787a4489 | KangIngu | <Compile Include="Web References\Get_FinalImage\Reference.cs"> |
729 | <AutoGen>True</AutoGen> |
||
730 | <DesignTime>True</DesignTime> |
||
731 | <DependentUpon>Reference.map</DependentUpon> |
||
732 | </Compile> |
||
733 | <Compile Include="Web References\kr.co.devdoftech.cloud\Reference.cs"> |
||
734 | <AutoGen>True</AutoGen> |
||
735 | <DesignTime>True</DesignTime> |
||
736 | <DependentUpon>Reference.map</DependentUpon> |
||
737 | </Compile> |
||
738 | <Compile Include="WrapPanel\LengthConverter.cs" /> |
||
739 | <Compile Include="WrapPanel\NumericExtensions.cs" /> |
||
740 | <Compile Include="WrapPanel\OrientedSize.cs" /> |
||
741 | <Compile Include="WrapPanel\TypeConverters.cs" /> |
||
742 | <Compile Include="WrapPanel\WrapPanel.cs" /> |
||
743 | <Page Include="Assets\MarkupColorListBox.xaml"> |
||
744 | <SubType>Designer</SubType> |
||
745 | <Generator>MSBuild:Compile</Generator> |
||
746 | </Page> |
||
747 | <Page Include="Assets\RadGridViewStyleResourceDictionary.xaml"> |
||
748 | <Generator>MSBuild:Compile</Generator> |
||
749 | <SubType>Designer</SubType> |
||
750 | </Page> |
||
751 | 5a8b818e | humkyung | <Page Include="Controls\addToFavoriteWindow_Internal.xaml"> |
752 | <Generator>MSBuild:Compile</Generator> |
||
753 | <SubType>Designer</SubType> |
||
754 | </Page> |
||
755 | 787a4489 | KangIngu | <Page Include="Controls\AdornerFinal.xaml"> |
756 | <SubType>Designer</SubType> |
||
757 | <Generator>MSBuild:Compile</Generator> |
||
758 | </Page> |
||
759 | <Page Include="Controls\Alert.xaml"> |
||
760 | <Generator>MSBuild:Compile</Generator> |
||
761 | <SubType>Designer</SubType> |
||
762 | </Page> |
||
763 | <Page Include="Controls\CalendarControl.xaml"> |
||
764 | <SubType>Designer</SubType> |
||
765 | <Generator>MSBuild:Compile</Generator> |
||
766 | </Page> |
||
767 | <Page Include="Controls\CheckList.xaml"> |
||
768 | <SubType>Designer</SubType> |
||
769 | <Generator>MSBuild:Compile</Generator> |
||
770 | </Page> |
||
771 | <Page Include="Controls\CheckList_Detail.xaml"> |
||
772 | <Generator>MSBuild:Compile</Generator> |
||
773 | <SubType>Designer</SubType> |
||
774 | 8e2743a3 | humkyung | </Page> |
775 | <Page Include="Controls\CheckList_Status.xaml"> |
||
776 | <Generator>MSBuild:Compile</Generator> |
||
777 | <SubType>Designer</SubType> |
||
778 | 787a4489 | KangIngu | </Page> |
779 | 3abe8d4e | taeseongkim | <Page Include="Controls\ColorList.xaml"> |
780 | <SubType>Designer</SubType> |
||
781 | <Generator>MSBuild:Compile</Generator> |
||
782 | </Page> |
||
783 | 787a4489 | KangIngu | <Page Include="Controls\CommantImage.xaml"> |
784 | <Generator>MSBuild:Compile</Generator> |
||
785 | <SubType>Designer</SubType> |
||
786 | </Page> |
||
787 | 5a8b818e | humkyung | <Page Include="Controls\editToFavoriteWindow_Internal.xaml"> |
788 | <Generator>MSBuild:Compile</Generator> |
||
789 | <SubType>Designer</SubType> |
||
790 | </Page> |
||
791 | <Page Include="Controls\FavoritePanel.xaml"> |
||
792 | <Generator>MSBuild:Compile</Generator> |
||
793 | <SubType>Designer</SubType> |
||
794 | </Page> |
||
795 | b74a9c91 | taeseongkim | <Page Include="Controls\MacroEdit.xaml"> |
796 | <SubType>Designer</SubType> |
||
797 | <Generator>MSBuild:Compile</Generator> |
||
798 | </Page> |
||
799 | 787a4489 | KangIngu | <Page Include="Controls\Panorama.xaml"> |
800 | <SubType>Designer</SubType> |
||
801 | <Generator>MSBuild:Compile</Generator> |
||
802 | </Page> |
||
803 | <Page Include="Controls\PrintControl.xaml"> |
||
804 | <SubType>Designer</SubType> |
||
805 | <Generator>MSBuild:Compile</Generator> |
||
806 | </Page> |
||
807 | 882f0fcf | djkim | <Page Include="Controls\ProgressControl.xaml"> |
808 | <SubType>Designer</SubType> |
||
809 | <Generator>MSBuild:Compile</Generator> |
||
810 | </Page> |
||
811 | 787a4489 | KangIngu | <Page Include="Controls\Sample.xaml"> |
812 | <SubType>Designer</SubType> |
||
813 | <Generator>MSBuild:Compile</Generator> |
||
814 | </Page> |
||
815 | <Page Include="Controls\SearchPanel.xaml"> |
||
816 | <SubType>Designer</SubType> |
||
817 | <Generator>MSBuild:Compile</Generator> |
||
818 | </Page> |
||
819 | cf1cc862 | taeseongkim | <Page Include="Controls\SignManager.xaml"> |
820 | <SubType>Designer</SubType> |
||
821 | <Generator>MSBuild:Compile</Generator> |
||
822 | </Page> |
||
823 | 787a4489 | KangIngu | <Page Include="Controls\Symbol.xaml"> |
824 | <SubType>Designer</SubType> |
||
825 | <Generator>MSBuild:Compile</Generator> |
||
826 | </Page> |
||
827 | 53880c83 | ljiyeon | <Page Include="Controls\SymbolPrompt.xaml"> |
828 | <SubType>Designer</SubType> |
||
829 | <Generator>MSBuild:Compile</Generator> |
||
830 | </Page> |
||
831 | 787a4489 | KangIngu | <Page Include="Messenger\ConversationView.xaml"> |
832 | <SubType>Designer</SubType> |
||
833 | <Generator>MSBuild:Compile</Generator> |
||
834 | </Page> |
||
835 | <Page Include="Messenger\StyleDictionary.xaml"> |
||
836 | <SubType>Designer</SubType> |
||
837 | 8bd25583 | taeseongkim | <Generator>MSBuild:Compile</Generator> |
838 | </Page> |
||
839 | <Page Include="Resources\ClearTextBoxStyle.xaml"> |
||
840 | <SubType>Designer</SubType> |
||
841 | 787a4489 | KangIngu | <Generator>MSBuild:Compile</Generator> |
842 | </Page> |
||
843 | 92442e4a | taeseongkim | <Page Include="Resources\DecodeImageTemplate.xaml"> |
844 | <SubType>Designer</SubType> |
||
845 | <Generator>MSBuild:Compile</Generator> |
||
846 | </Page> |
||
847 | 8e5a4a6a | taeseongkim | <Page Include="Resources\DragAndDropListBoxStyle.xaml"> |
848 | <SubType>Designer</SubType> |
||
849 | <Generator>MSBuild:Compile</Generator> |
||
850 | </Page> |
||
851 | c362d2a5 | taeseongkim | <Page Include="Resources\RadConfirmStyle.xaml"> |
852 | <SubType>Designer</SubType> |
||
853 | <Generator>MSBuild:Compile</Generator> |
||
854 | </Page> |
||
855 | c206d293 | taeseongkim | <Page Include="Resources\RadPasswordPromptStyle.xaml"> |
856 | <SubType>Designer</SubType> |
||
857 | <Generator>MSBuild:Compile</Generator> |
||
858 | </Page> |
||
859 | 6af42ff0 | taeseongkim | <Page Include="Resources\SimpleLIstViewStyle.xaml"> |
860 | <SubType>Designer</SubType> |
||
861 | <Generator>MSBuild:Compile</Generator> |
||
862 | </Page> |
||
863 | 787a4489 | KangIngu | <Page Include="Resources\Theme_CustomControl.xaml"> |
864 | <SubType>Designer</SubType> |
||
865 | <Generator>MSBuild:Compile</Generator> |
||
866 | </Page> |
||
867 | d33ef543 | taeseongkim | <Page Include="Resources\WindowStyle.xaml"> |
868 | <SubType>Designer</SubType> |
||
869 | <Generator>MSBuild:Compile</Generator> |
||
870 | </Page> |
||
871 | 787a4489 | KangIngu | <Page Include="Views\MainMenu.xaml"> |
872 | <SubType>Designer</SubType> |
||
873 | <Generator>MSBuild:Compile</Generator> |
||
874 | </Page> |
||
875 | <Page Include="Controls\Explorer.xaml"> |
||
876 | <SubType>Designer</SubType> |
||
877 | <Generator>MSBuild:Compile</Generator> |
||
878 | </Page> |
||
879 | cf2671a6 | ljiyeon | <Page Include="Views\SplashScreenWindow.xaml"> |
880 | <SubType>Designer</SubType> |
||
881 | <Generator>MSBuild:Compile</Generator> |
||
882 | </Page> |
||
883 | 787a4489 | KangIngu | <Page Include="Views\TopMenu.xaml"> |
884 | <SubType>Designer</SubType> |
||
885 | <Generator>MSBuild:Compile</Generator> |
||
886 | </Page> |
||
887 | <Page Include="MainWindow.xaml"> |
||
888 | <Generator>MSBuild:Compile</Generator> |
||
889 | <SubType>Designer</SubType> |
||
890 | </Page> |
||
891 | <Compile Include="App.xaml.cs"> |
||
892 | <DependentUpon>App.xaml</DependentUpon> |
||
893 | <SubType>Code</SubType> |
||
894 | </Compile> |
||
895 | <Compile Include="Common\AdornerCore.cs" /> |
||
896 | <Compile Include="Common\Converter\BoolToVisibleConverter.cs" /> |
||
897 | <Compile Include="Common\Converter\ConsolidationBackgroudConverter.cs" /> |
||
898 | <Compile Include="Common\Converter\ConsolidationStringConverter.cs" /> |
||
899 | <Compile Include="Common\Converter\MarginCorrectionConverter.cs" /> |
||
900 | <Compile Include="Common\Converter\MarkupDataToConverter.cs" /> |
||
901 | <Compile Include="Common\Converter\PreviewerVisibleConverter.cs" /> |
||
902 | 3abe8d4e | taeseongkim | <Compile Include="Common\Converter\StringToColorBrushConverter.cs" /> |
903 | 787a4489 | KangIngu | <Compile Include="Common\DocumentSet.cs" /> |
904 | <Compile Include="Common\ExpandingMouseOver.cs" /> |
||
905 | <Compile Include="Common\InitData.cs" /> |
||
906 | <Compile Include="Common\ThumbnailItem.cs" /> |
||
907 | <Compile Include="Common\UsersCommentPagesMember.cs" /> |
||
908 | <Compile Include="Common\ViewerDataModel.cs" /> |
||
909 | <Compile Include="Controls\AdornerFinal.xaml.cs"> |
||
910 | <DependentUpon>AdornerFinal.xaml</DependentUpon> |
||
911 | </Compile> |
||
912 | <Compile Include="Controls\CalendarControl.xaml.cs"> |
||
913 | <DependentUpon>CalendarControl.xaml</DependentUpon> |
||
914 | </Compile> |
||
915 | <Compile Include="Controls\PrintControl.xaml.cs"> |
||
916 | <DependentUpon>PrintControl.xaml</DependentUpon> |
||
917 | </Compile> |
||
918 | <Compile Include="Controls\Sample.xaml.cs"> |
||
919 | <DependentUpon>Sample.xaml</DependentUpon> |
||
920 | </Compile> |
||
921 | <Compile Include="Events\Event_KeyEvent.cs" /> |
||
922 | <Compile Include="Events\Export.cs" /> |
||
923 | <Compile Include="Events\Implementation\TopMenuEvent.cs" /> |
||
924 | <Compile Include="Events\Load.cs" /> |
||
925 | <Compile Include="Events\Property\EventProperty.cs" /> |
||
926 | <Compile Include="RegexCollection.cs" /> |
||
927 | <Compile Include="Services\BaseServices.cs" /> |
||
928 | <Compile Include="Views\MainMenu.xaml.cs"> |
||
929 | <DependentUpon>MainMenu.xaml</DependentUpon> |
||
930 | </Compile> |
||
931 | <Compile Include="Controls\Explorer.xaml.cs"> |
||
932 | <DependentUpon>Explorer.xaml</DependentUpon> |
||
933 | </Compile> |
||
934 | <Compile Include="Views\TopMenu.xaml.cs"> |
||
935 | <DependentUpon>TopMenu.xaml</DependentUpon> |
||
936 | </Compile> |
||
937 | <Compile Include="MainWindow.xaml.cs"> |
||
938 | <DependentUpon>MainWindow.xaml</DependentUpon> |
||
939 | <SubType>Code</SubType> |
||
940 | </Compile> |
||
941 | <Page Include="Resources\Theme_Color.xaml"> |
||
942 | <SubType>Designer</SubType> |
||
943 | <Generator>MSBuild:Compile</Generator> |
||
944 | </Page> |
||
945 | </ItemGroup> |
||
946 | <ItemGroup> |
||
947 | <Compile Include="Properties\AssemblyInfo.cs"> |
||
948 | <SubType>Code</SubType> |
||
949 | </Compile> |
||
950 | <Compile Include="Properties\Resources.Designer.cs"> |
||
951 | <AutoGen>True</AutoGen> |
||
952 | <DesignTime>True</DesignTime> |
||
953 | <DependentUpon>Resources.resx</DependentUpon> |
||
954 | </Compile> |
||
955 | <Compile Include="Properties\Settings.Designer.cs"> |
||
956 | <AutoGen>True</AutoGen> |
||
957 | <DependentUpon>Settings.settings</DependentUpon> |
||
958 | <DesignTimeSharedInput>True</DesignTimeSharedInput> |
||
959 | </Compile> |
||
960 | <EmbeddedResource Include="Properties\Resources.resx"> |
||
961 | <Generator>ResXFileCodeGenerator</Generator> |
||
962 | <LastGenOutput>Resources.Designer.cs</LastGenOutput> |
||
963 | </EmbeddedResource> |
||
964 | <None Include="app.config"> |
||
965 | <SubType>Designer</SubType> |
||
966 | </None> |
||
967 | 9f55b953 | taeseongkim | <None Include="app.Debug.config"> |
968 | <DependentUpon>app.config</DependentUpon> |
||
969 | </None> |
||
970 | f65e6c02 | taeseongkim | <None Include="app.Debug_CadExport.config"> |
971 | <DependentUpon>app.config</DependentUpon> |
||
972 | </None> |
||
973 | ab590000 | taeseongkim | <None Include="app.Debug_Daelim.config"> |
974 | <DependentUpon>app.config</DependentUpon> |
||
975 | </None> |
||
976 | 9f55b953 | taeseongkim | <None Include="app.Debug_DevDoftech.config"> |
977 | <DependentUpon>app.config</DependentUpon> |
||
978 | </None> |
||
979 | <None Include="app.Debug_HyoSung.config"> |
||
980 | <DependentUpon>app.config</DependentUpon> |
||
981 | </None> |
||
982 | f65e6c02 | taeseongkim | <None Include="app.Debug_SNI.config"> |
983 | <DependentUpon>app.config</DependentUpon> |
||
984 | </None> |
||
985 | 9f55b953 | taeseongkim | <None Include="app.Release.config"> |
986 | <DependentUpon>app.config</DependentUpon> |
||
987 | </None> |
||
988 | 80856edb | taeseongkim | <None Include="app.Release_Hyosung.config"> |
989 | <DependentUpon>app.config</DependentUpon> |
||
990 | </None> |
||
991 | ab590000 | taeseongkim | <None Include="app.Release_PEMSS.config"> |
992 | <DependentUpon>app.config</DependentUpon> |
||
993 | </None> |
||
994 | 6b6e937c | taeseongkim | <None Include="Connected Services\KcomService\KCOM.KcomService.FinalPDFResult.datasource"> |
995 | <DependentUpon>Reference.svcmap</DependentUpon> |
||
996 | </None> |
||
997 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView.wsdl" /> |
998 | <None Include="Connected Services\KcomService\ServiceDeepView.xsd"> |
||
999 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1000 | </None> |
||
1001 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView1.wsdl" /> |
1002 | <None Include="Connected Services\KcomService\ServiceDeepView1.xsd"> |
||
1003 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1004 | </None> |
||
1005 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView2.xsd"> |
1006 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1007 | </None> |
||
1008 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView3.xsd"> |
1009 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1010 | </None> |
||
1011 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView4.xsd"> |
1012 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1013 | </None> |
||
1014 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView5.xsd"> |
1015 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1016 | </None> |
||
1017 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView6.xsd"> |
1018 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1019 | </None> |
||
1020 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView7.xsd"> |
1021 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1022 | </None> |
||
1023 | cf1cc862 | taeseongkim | <None Include="Connected Services\KcomService\ServiceDeepView8.xsd"> |
1024 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1025 | </None> |
||
1026 | 787a4489 | KangIngu | <None Include="Connected Services\ServiceDeepView\KCOM.ServiceDeepView.FinalPDFResult.datasource"> |
1027 | <DependentUpon>Reference.svcmap</DependentUpon> |
||
1028 | </None> |
||
1029 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView2.wsdl" /> |
1030 | <None Include="Connected Services\ServiceDeepView\ServiceDeepView21.wsdl" /> |
||
1031 | <None Include="Connected Services\ServiceDeepView\ServiceDeepView22.wsdl" /> |
||
1032 | <None Include="Connected Services\ServiceDeepView\ServiceDeepView23.wsdl" /> |
||
1033 | <None Include="Connected Services\ServiceDeepView\ServiceDeepView9.xsd"> |
||
1034 | 6b6e937c | taeseongkim | <SubType>Designer</SubType> |
1035 | </None> |
||
1036 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView91.xsd"> |
1037 | 53880c83 | ljiyeon | <SubType>Designer</SubType> |
1038 | </None> |
||
1039 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView910.xsd"> |
1040 | 53880c83 | ljiyeon | <SubType>Designer</SubType> |
1041 | </None> |
||
1042 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView911.xsd"> |
1043 | 53880c83 | ljiyeon | <SubType>Designer</SubType> |
1044 | </None> |
||
1045 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView912.xsd"> |
1046 | 53880c83 | ljiyeon | <SubType>Designer</SubType> |
1047 | </None> |
||
1048 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView913.xsd"> |
1049 | 53880c83 | ljiyeon | <SubType>Designer</SubType> |
1050 | </None> |
||
1051 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView914.xsd"> |
1052 | 53880c83 | ljiyeon | <SubType>Designer</SubType> |
1053 | </None> |
||
1054 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView915.xsd"> |
1055 | 53880c83 | ljiyeon | <SubType>Designer</SubType> |
1056 | </None> |
||
1057 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView916.xsd"> |
1058 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1059 | </None> |
||
1060 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView917.xsd"> |
1061 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1062 | </None> |
||
1063 | e451c585 | ljiyeon | <None Include="Connected Services\ServiceDeepView\ServiceDeepView92.xsd"> |
1064 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1065 | </None> |
||
1066 | e451c585 | ljiyeon | <None Include="Connected Services\ServiceDeepView\ServiceDeepView93.xsd"> |
1067 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1068 | </None> |
||
1069 | e451c585 | ljiyeon | <None Include="Connected Services\ServiceDeepView\ServiceDeepView94.xsd"> |
1070 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1071 | </None> |
||
1072 | e451c585 | ljiyeon | <None Include="Connected Services\ServiceDeepView\ServiceDeepView95.xsd"> |
1073 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1074 | </None> |
||
1075 | e451c585 | ljiyeon | <None Include="Connected Services\ServiceDeepView\ServiceDeepView96.xsd"> |
1076 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1077 | </None> |
||
1078 | e451c585 | ljiyeon | <None Include="Connected Services\ServiceDeepView\ServiceDeepView97.xsd"> |
1079 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1080 | </None> |
||
1081 | e451c585 | ljiyeon | <None Include="Connected Services\ServiceDeepView\ServiceDeepView98.xsd"> |
1082 | <SubType>Designer</SubType> |
||
1083 | </None> |
||
1084 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView99.xsd"> |
1085 | <SubType>Designer</SubType> |
||
1086 | </None> |
||
1087 | b60e844d | taeseongkim | <None Include="Log.config"> |
1088 | <SubType>Designer</SubType> |
||
1089 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
||
1090 | </None> |
||
1091 | 77cdac33 | taeseongkim | <None Include="MARKUS.ini"> |
1092 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
||
1093 | </None> |
||
1094 | e451c585 | ljiyeon | <None Include="packages.config"> |
1095 | 787a4489 | KangIngu | <SubType>Designer</SubType> |
1096 | </None> |
||
1097 | b42dd24d | taeseongkim | <None Include="Properties\app.manifest"> |
1098 | <SubType>Designer</SubType> |
||
1099 | </None> |
||
1100 | 787a4489 | KangIngu | <None Include="Properties\DataSources\IKCOM.KCOM_SystemInfo.datasource" /> |
1101 | <None Include="Properties\DataSources\IKCOM.MarkupInfoItem.datasource" /> |
||
1102 | 264c9309 | ljiyeon | <None Include="Properties\DataSources\IKCOM.VersionInfo.datasource" /> |
1103 | 787a4489 | KangIngu | <None Include="Properties\DataSources\IKCOM.VPRevision.datasource" /> |
1104 | 6c781c0c | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.CHECK_LIST.datasource" /> |
1105 | <None Include="Properties\DataSources\KCOMDataModel.DataModel.CHECK_LIST_HISTORY.datasource" /> |
||
1106 | 787a4489 | KangIngu | <None Include="Properties\DataSources\KCOMDataModel.DataModel.DOCINFO.datasource" /> |
1107 | c0977e97 | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.DOCPAGE.datasource" /> |
1108 | 787a4489 | KangIngu | <None Include="Properties\DataSources\KCOMDataModel.DataModel.DOCUMENT_ITEM.datasource" /> |
1109 | 6c781c0c | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.FAVORITE_DOC.datasource" /> |
1110 | c0977e97 | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.FINAL_PDF.datasource" /> |
1111 | 6c781c0c | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.MARKUP_DATA.datasource" /> |
1112 | <None Include="Properties\DataSources\KCOMDataModel.DataModel.MARKUP_INFO.datasource" /> |
||
1113 | 787a4489 | KangIngu | <None Include="Properties\DataSources\KCOMDataModel.DataModel.MEMBER.datasource" /> |
1114 | c0977e97 | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.PROPERTIES.datasource" /> |
1115 | 6c781c0c | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.SYMBOL_PRIVATE.datasource" /> |
1116 | <None Include="Properties\DataSources\KCOMDataModel.DataModel.SYMBOL_PUBLIC.datasource" /> |
||
1117 | f87ee33e | djkim | <None Include="Properties\DataSources\KCOMDataModel.DataModel.TALK.datasource" /> |
1118 | 787a4489 | KangIngu | <None Include="Properties\DataSources\System.Windows.Rect.datasource" /> |
1119 | <None Include="Properties\Settings.settings"> |
||
1120 | <Generator>SettingsSingleFileGenerator</Generator> |
||
1121 | <LastGenOutput>Settings.Designer.cs</LastGenOutput> |
||
1122 | af22332b | ljiyeon | <SubType>Designer</SubType> |
1123 | 787a4489 | KangIngu | </None> |
1124 | cf1cc862 | taeseongkim | <Resource Include="Resources\mayqueen.ttf" /> |
1125 | 6cdfeba2 | humkyung | <None Include="tessdata\deu.traineddata"> |
1126 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
||
1127 | </None> |
||
1128 | <None Include="tessdata\eng.traineddata"> |
||
1129 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
||
1130 | </None> |
||
1131 | <None Include="tessdata\fra.traineddata"> |
||
1132 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
||
1133 | </None> |
||
1134 | <None Include="tessdata\spa.traineddata"> |
||
1135 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
||
1136 | </None> |
||
1137 | 787a4489 | KangIngu | <None Include="Web References\Get_FinalImage\Get_PdfImage.wsdl" /> |
1138 | <None Include="Web References\Get_FinalImage\Reference.map"> |
||
1139 | <Generator>MSDiscoCodeGenerator</Generator> |
||
1140 | <LastGenOutput>Reference.cs</LastGenOutput> |
||
1141 | </None> |
||
1142 | <None Include="Web References\kr.co.devdoftech.cloud\FileUpload.wsdl" /> |
||
1143 | <None Include="Web References\kr.co.devdoftech.cloud\Reference.map"> |
||
1144 | <Generator>MSDiscoCodeGenerator</Generator> |
||
1145 | <LastGenOutput>Reference.cs</LastGenOutput> |
||
1146 | </None> |
||
1147 | </ItemGroup> |
||
1148 | <ItemGroup> |
||
1149 | <WCFMetadata Include="Connected Services\" /> |
||
1150 | </ItemGroup> |
||
1151 | <ItemGroup> |
||
1152 | <Resource Include="Resources\Images\ExtImage\bmp.png" /> |
||
1153 | <Resource Include="Resources\Images\ExtImage\docx.png" /> |
||
1154 | <Resource Include="Resources\Images\ExtImage\jpg.png" /> |
||
1155 | <Resource Include="Resources\Images\ExtImage\pdf.png" /> |
||
1156 | <Resource Include="Resources\Images\ExtImage\png.png" /> |
||
1157 | <Resource Include="Resources\Images\ExtImage\pptx.png" /> |
||
1158 | <Resource Include="Resources\Images\ExtImage\psd.png" /> |
||
1159 | <Resource Include="Resources\Images\ExtImage\txt.png" /> |
||
1160 | <Resource Include="Resources\Images\ExtImage\xlsx.png" /> |
||
1161 | <Resource Include="Resources\Images\ExtImage\zip.png" /> |
||
1162 | </ItemGroup> |
||
1163 | <ItemGroup> |
||
1164 | <Resource Include="Resources\Images\Logo\Daelim.jpg" /> |
||
1165 | </ItemGroup> |
||
1166 | <ItemGroup> |
||
1167 | <Resource Include="Resources\Images\OCSStatusImage\BLANK.png" /> |
||
1168 | <Resource Include="Resources\Images\OCSStatusImage\IMNAWAY.PNG" /> |
||
1169 | <Resource Include="Resources\Images\OCSStatusImage\IMNAWAYOOF.PNG" /> |
||
1170 | <Resource Include="Resources\Images\OCSStatusImage\IMNBLOCKED.PNG" /> |
||
1171 | <Resource Include="Resources\Images\OCSStatusImage\IMNBUSY.PNG" /> |
||
1172 | <Resource Include="Resources\Images\OCSStatusImage\IMNBUSYOOF.PNG" /> |
||
1173 | <Resource Include="Resources\Images\OCSStatusImage\IMNDND.PNG" /> |
||
1174 | <Resource Include="Resources\Images\OCSStatusImage\IMNDNDOOF.PNG" /> |
||
1175 | <Resource Include="Resources\Images\OCSStatusImage\IMNHDR.png" /> |
||
1176 | <Resource Include="Resources\Images\OCSStatusImage\IMNIDLE.PNG" /> |
||
1177 | <Resource Include="Resources\Images\OCSStatusImage\imnidlebusy.png" /> |
||
1178 | <Resource Include="Resources\Images\OCSStatusImage\imnidlebusyoof.png" /> |
||
1179 | <Resource Include="Resources\Images\OCSStatusImage\IMNIDLEOOF.PNG" /> |
||
1180 | <Resource Include="Resources\Images\OCSStatusImage\IMNOFF.PNG" /> |
||
1181 | <Resource Include="Resources\Images\OCSStatusImage\IMNOFFOOF.PNG" /> |
||
1182 | <Resource Include="Resources\Images\OCSStatusImage\IMNON.PNG" /> |
||
1183 | <Resource Include="Resources\Images\OCSStatusImage\IMNONOOF.PNG" /> |
||
1184 | <Resource Include="Resources\Images\OCSStatusImage\IMNUNK.PNG" /> |
||
1185 | </ItemGroup> |
||
1186 | <ItemGroup> |
||
1187 | <Resource Include="Resources\Images\MenuImage_New\arc.png" /> |
||
1188 | <Resource Include="Resources\Images\MenuImage_New\arrow.png" /> |
||
1189 | <Resource Include="Resources\Images\MenuImage_New\arrowText.png" /> |
||
1190 | <Resource Include="Resources\Images\MenuImage_New\arrowtextBorder.png" /> |
||
1191 | <Resource Include="Resources\Images\MenuImage_New\arrowTextCloud.png" /> |
||
1192 | <Resource Include="Resources\Images\MenuImage_New\arrowtextTrans.png" /> |
||
1193 | <Resource Include="Resources\Images\MenuImage_New\arrowTrans.png" /> |
||
1194 | <Resource Include="Resources\Images\MenuImage_New\arrowTransBorder.png" /> |
||
1195 | <Resource Include="Resources\Images\MenuImage_New\arrowTransCloud.png" /> |
||
1196 | <Resource Include="Resources\Images\MenuImage_New\bold.png" /> |
||
1197 | <Resource Include="Resources\Images\MenuImage_New\calendar.png" /> |
||
1198 | <Resource Include="Resources\Images\MenuImage_New\circle.png" /> |
||
1199 | <Resource Include="Resources\Images\MenuImage_New\cloud.png" /> |
||
1200 | <Resource Include="Resources\Images\MenuImage_New\cloudRect.png" /> |
||
1201 | <Resource Include="Resources\Images\MenuImage_New\dimension.png" /> |
||
1202 | <Resource Include="Resources\Images\MenuImage_New\dimensionEx.png" /> |
||
1203 | <Resource Include="Resources\Images\MenuImage_New\eraser.png" /> |
||
1204 | <Resource Include="Resources\Images\MenuImage_New\eraserLine.png" /> |
||
1205 | <Resource Include="Resources\Images\MenuImage_New\Italic.png" /> |
||
1206 | <Resource Include="Resources\Images\MenuImage_New\line.png" /> |
||
1207 | <Resource Include="Resources\Images\MenuImage_New\lineChain.png" /> |
||
1208 | <Resource Include="Resources\Images\MenuImage_New\lineDelete.png" /> |
||
1209 | <Resource Include="Resources\Images\MenuImage_New\markCheck.png" /> |
||
1210 | <Resource Include="Resources\Images\MenuImage_New\markRect.png" /> |
||
1211 | <Resource Include="Resources\Images\MenuImage_New\pen.png" /> |
||
1212 | <Resource Include="Resources\Images\MenuImage_New\picture.png" /> |
||
1213 | <Resource Include="Resources\Images\MenuImage_New\polygon.png" /> |
||
1214 | <Resource Include="Resources\Images\MenuImage_New\rectangle.png" /> |
||
1215 | <Resource Include="Resources\Images\MenuImage_New\select.png" /> |
||
1216 | <Resource Include="Resources\Images\MenuImage_New\selectInk.png" /> |
||
1217 | <Resource Include="Resources\Images\MenuImage_New\sign.png" /> |
||
1218 | <Resource Include="Resources\Images\MenuImage_New\signReal.png" /> |
||
1219 | <Resource Include="Resources\Images\MenuImage_New\stamp.png" /> |
||
1220 | <Resource Include="Resources\Images\MenuImage_New\text.png" /> |
||
1221 | <Resource Include="Resources\Images\MenuImage_New\textBorder.png" /> |
||
1222 | <Resource Include="Resources\Images\MenuImage_New\textCloud.png" /> |
||
1223 | <Resource Include="Resources\Images\MenuImage_New\triangle.png" /> |
||
1224 | <Resource Include="Resources\Images\MenuImage_New\underline.png" /> |
||
1225 | </ItemGroup> |
||
1226 | <ItemGroup> |
||
1227 | <Resource Include="Resources\Images\MenuImage_New\print.png" /> |
||
1228 | </ItemGroup> |
||
1229 | <ItemGroup> |
||
1230 | <Resource Include="Resources\Images\MenuImage_New\printer.png" /> |
||
1231 | </ItemGroup> |
||
1232 | <ItemGroup> |
||
1233 | <Resource Include="Resources\Images\MenuImage_New\toPDF.png" /> |
||
1234 | </ItemGroup> |
||
1235 | <ItemGroup> |
||
1236 | <Resource Include="Resources\Images\MenuImage_New\minus.png" /> |
||
1237 | <Resource Include="Resources\Images\MenuImage_New\plus.png" /> |
||
1238 | </ItemGroup> |
||
1239 | <ItemGroup> |
||
1240 | <Resource Include="Resources\Images\MenuImage_New\fitWindownHeight.png" /> |
||
1241 | <Resource Include="Resources\Images\MenuImage_New\fitWindownWidth.png" /> |
||
1242 | <Resource Include="Resources\Images\MenuImage_New\fullscreen.png" /> |
||
1243 | </ItemGroup> |
||
1244 | <ItemGroup> |
||
1245 | <Resource Include="Resources\Images\MenuImage_New\expand.png" /> |
||
1246 | </ItemGroup> |
||
1247 | <ItemGroup> |
||
1248 | <Resource Include="Resources\Images\MenuImage_New\zoom-in-tool.png" /> |
||
1249 | </ItemGroup> |
||
1250 | <ItemGroup> |
||
1251 | <Resource Include="Resources\Images\MenuImage_New\pageArrow.png" /> |
||
1252 | </ItemGroup> |
||
1253 | <ItemGroup> |
||
1254 | <Resource Include="Messenger\user.png" /> |
||
1255 | </ItemGroup> |
||
1256 | <ItemGroup> |
||
1257 | 6b6e937c | taeseongkim | <WCFMetadataStorage Include="Connected Services\KcomService\" /> |
1258 | 787a4489 | KangIngu | <WCFMetadataStorage Include="Connected Services\ServiceDeepView\" /> |
1259 | </ItemGroup> |
||
1260 | <ItemGroup> |
||
1261 | <None Include="Connected Services\ServiceDeepView\configuration91.svcinfo" /> |
||
1262 | </ItemGroup> |
||
1263 | <ItemGroup> |
||
1264 | <None Include="Connected Services\ServiceDeepView\configuration.svcinfo" /> |
||
1265 | </ItemGroup> |
||
1266 | <ItemGroup> |
||
1267 | <None Include="Connected Services\ServiceDeepView\Reference.svcmap"> |
||
1268 | <Generator>WCF Proxy Generator</Generator> |
||
1269 | <LastGenOutput>Reference.cs</LastGenOutput> |
||
1270 | </None> |
||
1271 | </ItemGroup> |
||
1272 | <ItemGroup> |
||
1273 | <WebReferences Include="Web References\" /> |
||
1274 | </ItemGroup> |
||
1275 | <ItemGroup> |
||
1276 | <WebReferenceUrl Include="http://cloud.devdoftech.co.kr:5977/Get_FInalImage/Get_PdfImage.asmx"> |
||
1277 | <UrlBehavior>Dynamic</UrlBehavior> |
||
1278 | <RelPath>Web References\Get_FinalImage\</RelPath> |
||
1279 | <UpdateFromURL>http://cloud.devdoftech.co.kr:5977/Get_FInalImage/Get_PdfImage.asmx</UpdateFromURL> |
||
1280 | <ServiceLocationURL> |
||
1281 | </ServiceLocationURL> |
||
1282 | <CachedDynamicPropName> |
||
1283 | </CachedDynamicPropName> |
||
1284 | <CachedAppSettingsObjectName>Settings</CachedAppSettingsObjectName> |
||
1285 | <CachedSettingsPropName>KCOM_Get_FinalImage_Get_PdfImage</CachedSettingsPropName> |
||
1286 | </WebReferenceUrl> |
||
1287 | a2c29ea2 | swate0609 | <WebReferenceUrl Include="https://localhost:44393/FileUpload.asmx"> |
1288 | 787a4489 | KangIngu | <UrlBehavior>Dynamic</UrlBehavior> |
1289 | <RelPath>Web References\kr.co.devdoftech.cloud\</RelPath> |
||
1290 | a2c29ea2 | swate0609 | <UpdateFromURL>https://localhost:44393/FileUpload.asmx</UpdateFromURL> |
1291 | 787a4489 | KangIngu | <ServiceLocationURL> |
1292 | </ServiceLocationURL> |
||
1293 | <CachedDynamicPropName> |
||
1294 | </CachedDynamicPropName> |
||
1295 | <CachedAppSettingsObjectName>Settings</CachedAppSettingsObjectName> |
||
1296 | <CachedSettingsPropName>KCOM_kr_co_devdoftech_cloud_FileUpload</CachedSettingsPropName> |
||
1297 | </WebReferenceUrl> |
||
1298 | </ItemGroup> |
||
1299 | <ItemGroup> |
||
1300 | <None Include="Web References\kr.co.devdoftech.cloud\FileUpload.disco" /> |
||
1301 | </ItemGroup> |
||
1302 | <ItemGroup> |
||
1303 | <Resource Include="Resources\Images\MenuImage_New\up-arrow.png" /> |
||
1304 | </ItemGroup> |
||
1305 | <ItemGroup> |
||
1306 | <Resource Include="Resources\Images\MenuImage_New\cancel.png" /> |
||
1307 | </ItemGroup> |
||
1308 | <ItemGroup> |
||
1309 | <Resource Include="Resources\Images\MenuImage_New\locked-padlock.png" /> |
||
1310 | <Resource Include="Resources\Images\MenuImage_New\locked-padlock_color.png" /> |
||
1311 | </ItemGroup> |
||
1312 | <ItemGroup> |
||
1313 | 2007ecaa | taeseongkim | <Folder Include="PlugIn\" /> |
1314 | 787a4489 | KangIngu | <Folder Include="Themes\" /> |
1315 | </ItemGroup> |
||
1316 | <ItemGroup> |
||
1317 | <Resource Include="Messenger\clip.png" /> |
||
1318 | <Resource Include="Messenger\frame-landscape.png" /> |
||
1319 | </ItemGroup> |
||
1320 | <ItemGroup> |
||
1321 | <Resource Include="Messenger\email.png" /> |
||
1322 | </ItemGroup> |
||
1323 | <ItemGroup> |
||
1324 | <Resource Include="Messenger\check_pen.png" /> |
||
1325 | </ItemGroup> |
||
1326 | <ItemGroup> |
||
1327 | <Resource Include="Resources\Images\MenuImage_New\panorama.png" /> |
||
1328 | </ItemGroup> |
||
1329 | <ItemGroup> |
||
1330 | <Resource Include="Resources\Images\MenuImage_New\Rotate_Minus.png" /> |
||
1331 | <Resource Include="Resources\Images\MenuImage_New\Rotate_Plus.png" /> |
||
1332 | </ItemGroup> |
||
1333 | <ItemGroup> |
||
1334 | <Resource Include="Resources\Images\MenuImage_New\flip.png" /> |
||
1335 | </ItemGroup> |
||
1336 | <ItemGroup> |
||
1337 | <Resource Include="Resources\Images\MenuImage_New\checklist.png" /> |
||
1338 | </ItemGroup> |
||
1339 | <ItemGroup> |
||
1340 | <Resource Include="Resources\Images\MenuImage_New\pdf.png" /> |
||
1341 | </ItemGroup> |
||
1342 | <ItemGroup> |
||
1343 | <Resource Include="Resources\Images\MenuImage_New\file.png" /> |
||
1344 | </ItemGroup> |
||
1345 | <ItemGroup> |
||
1346 | <Resource Include="Resources\Images\MenuImage_New\diskette.png" /> |
||
1347 | </ItemGroup> |
||
1348 | <ItemGroup> |
||
1349 | <Resource Include="markup.ico" /> |
||
1350 | </ItemGroup> |
||
1351 | <ItemGroup> |
||
1352 | <Resource Include="Resources\Images\MenuImage_New\chronometer.png" /> |
||
1353 | </ItemGroup> |
||
1354 | <ItemGroup> |
||
1355 | <None Include="Web References\Get_FinalImage\Get_PdfImage.disco" /> |
||
1356 | </ItemGroup> |
||
1357 | <ItemGroup> |
||
1358 | <Resource Include="Resources\Images\MenuImage_New\archive.png" /> |
||
1359 | </ItemGroup> |
||
1360 | d4b0c723 | KangIngu | <ItemGroup> |
1361 | <Resource Include="Resources\Images\MenuImage_New\copy1.png" /> |
||
1362 | <Resource Include="Resources\Images\MenuImage_New\copy2.png" /> |
||
1363 | <Resource Include="Resources\Images\MenuImage_New\copy3.png" /> |
||
1364 | <Resource Include="Resources\Images\MenuImage_New\copy4.png" /> |
||
1365 | <Resource Include="Resources\Images\MenuImage_New\Cut1.png" /> |
||
1366 | <Resource Include="Resources\Images\MenuImage_New\Cut2.png" /> |
||
1367 | <Resource Include="Resources\Images\MenuImage_New\Cut3.png" /> |
||
1368 | <Resource Include="Resources\Images\MenuImage_New\Cut4.png" /> |
||
1369 | <Resource Include="Resources\Images\MenuImage_New\Delete1.png" /> |
||
1370 | <Resource Include="Resources\Images\MenuImage_New\Delete2.png" /> |
||
1371 | <Resource Include="Resources\Images\MenuImage_New\Delete3.png" /> |
||
1372 | <Resource Include="Resources\Images\MenuImage_New\Delete4.png" /> |
||
1373 | <Resource Include="Resources\Images\MenuImage_New\Paste1.png" /> |
||
1374 | <Resource Include="Resources\Images\MenuImage_New\Paste2.png" /> |
||
1375 | <Resource Include="Resources\Images\MenuImage_New\Paste3.png" /> |
||
1376 | <Resource Include="Resources\Images\MenuImage_New\Paste4.png" /> |
||
1377 | <Resource Include="Resources\Images\MenuImage_New\Undo1.png" /> |
||
1378 | <Resource Include="Resources\Images\MenuImage_New\Undo2.png" /> |
||
1379 | <Resource Include="Resources\Images\MenuImage_New\Undo3.png" /> |
||
1380 | <Resource Include="Resources\Images\MenuImage_New\Undo4.png" /> |
||
1381 | </ItemGroup> |
||
1382 | <ItemGroup> |
||
1383 | <Resource Include="Resources\Images\MenuImage_New\Redo3.png" /> |
||
1384 | </ItemGroup> |
||
1385 | 84545cb3 | humkyung | <ItemGroup> |
1386 | <Resource Include="Resources\Images\MenuImage_New\diskette2.png" /> |
||
1387 | </ItemGroup> |
||
1388 | 8b52c487 | djkim | <ItemGroup> |
1389 | <Resource Include="Resources\Images\MenuImage_New\close-window.png" /> |
||
1390 | <Resource Include="Resources\Images\MenuImage_New\maximize-window.png" /> |
||
1391 | <Resource Include="Resources\Images\MenuImage_New\minimize-window.png" /> |
||
1392 | <Resource Include="Resources\Images\MenuImage_New\restore-window.png" /> |
||
1393 | </ItemGroup> |
||
1394 | 6c781c0c | djkim | <ItemGroup> |
1395 | 02d33d78 | djkim | <Resource Include="Resources\Images\MenuImage_New\small\font.png" /> |
1396 | <Resource Include="Resources\Images\MenuImage_New\small\line.png" /> |
||
1397 | <Resource Include="Resources\Images\MenuImage_New\small\pen.png" /> |
||
1398 | <Resource Include="Resources\Images\MenuImage_New\small\shape.png" /> |
||
1399 | <Resource Include="Resources\Images\MenuImage_New\small\stamp.png" /> |
||
1400 | <Resource Include="Resources\Images\MenuImage_New\small\text.png" /> |
||
1401 | </ItemGroup> |
||
1402 | <ItemGroup> |
||
1403 | <Resource Include="Resources\Images\MenuImage_New\small\control.png" /> |
||
1404 | <Resource Include="Resources\Images\MenuImage_New\small\linestyle.png" /> |
||
1405 | <Resource Include="Resources\Images\MenuImage_New\small\page.png" /> |
||
1406 | <Resource Include="Resources\Images\MenuImage_New\small\view.png" /> |
||
1407 | </ItemGroup> |
||
1408 | e451c585 | ljiyeon | <ItemGroup> |
1409 | <None Include="Connected Services\ServiceDeepView\ServiceDeepView1.disco" /> |
||
1410 | </ItemGroup> |
||
1411 | c7fcb949 | ljiyeon | <ItemGroup> |
1412 | cf2671a6 | ljiyeon | <Resource Include="Resources\Images\MenuImage_New\splash.png" /> |
1413 | c7fcb949 | ljiyeon | </ItemGroup> |
1414 | ca16abb2 | ljiyeon | <ItemGroup> |
1415 | <Resource Include="Resources\Cursor\customCursor.cur" /> |
||
1416 | </ItemGroup> |
||
1417 | <ItemGroup> |
||
1418 | <Resource Include="Resources\Cursor\customCursor2.cur" /> |
||
1419 | </ItemGroup> |
||
1420 | 40b3ce25 | ljiyeon | <ItemGroup> |
1421 | <Resource Include="Resources\Images\MenuImage_New\arrowarc.png" /> |
||
1422 | </ItemGroup> |
||
1423 | 53880c83 | ljiyeon | <ItemGroup> |
1424 | 684ef11c | ljiyeon | <Resource Include="oda.bmp" /> |
1425 | </ItemGroup> |
||
1426 | <ItemGroup> |
||
1427 | <Resource Include="Resources\Images\MenuImage_New\overlap.png" /> |
||
1428 | </ItemGroup> |
||
1429 | <ItemGroup> |
||
1430 | <Resource Include="Resources\Images\MenuImage_New\clip.png" /> |
||
1431 | <Resource Include="Resources\Images\MenuImage_New\inside.png" /> |
||
1432 | </ItemGroup> |
||
1433 | <ItemGroup> |
||
1434 | <Resource Include="Resources\Images\MenuImage_New\View.png" /> |
||
1435 | </ItemGroup> |
||
1436 | <ItemGroup> |
||
1437 | <Resource Include="Resources\Images\MenuImage_New\small\export.png" /> |
||
1438 | <Resource Include="Resources\Images\MenuImage_New\small\white.png" /> |
||
1439 | </ItemGroup> |
||
1440 | <ItemGroup> |
||
1441 | <Resource Include="Resources\Images\MenuImage_New\white.png" /> |
||
1442 | </ItemGroup> |
||
1443 | <ItemGroup> |
||
1444 | 5928384e | djkim | <ProjectReference Include="..\CommonLib\CommonLib.csproj"> |
1445 | <Project>{def47fc2-b898-4c92-ad8d-d7b9e994495e}</Project> |
||
1446 | <Name>CommonLib</Name> |
||
1447 | </ProjectReference> |
||
1448 | 2007ecaa | taeseongkim | <ProjectReference Include="..\IIpc\IIpc.csproj"> |
1449 | <Project>{07282278-92d8-4010-af9f-313c2aab08df}</Project> |
||
1450 | <Name>IIpc</Name> |
||
1451 | </ProjectReference> |
||
1452 | 684ef11c | ljiyeon | <ProjectReference Include="..\IKCOM\IKCOM.csproj"> |
1453 | <Project>{f236a005-12f4-406a-b9ed-0c3b5d994001}</Project> |
||
1454 | <Name>IKCOM</Name> |
||
1455 | </ProjectReference> |
||
1456 | <ProjectReference Include="..\KCOMDataModel\KCOMDataModel.csproj"> |
||
1457 | <Project>{629dc8cd-d458-47ef-8f02-cd12c7001c3e}</Project> |
||
1458 | <Name>KCOMDataModel</Name> |
||
1459 | </ProjectReference> |
||
1460 | <ProjectReference Include="..\MarkupToPDF\MarkupToPDF.csproj"> |
||
1461 | <Project>{a714bd67-8aac-4ed8-8ecf-7853c3549a68}</Project> |
||
1462 | <Name>MarkupToPDF</Name> |
||
1463 | </ProjectReference> |
||
1464 | 24c5e56c | taeseongkim | <ProjectReference Include="..\Markus.Fonts\Markus.Fonts.csproj"> |
1465 | <Project>{eb1de04a-d86e-4bf7-b095-f72207923c3b}</Project> |
||
1466 | <Name>Markus.Fonts</Name> |
||
1467 | </ProjectReference> |
||
1468 | a860bafc | taeseongkim | <ProjectReference Include="..\Markus.ImageComparer\Markus.ImageCompare.csproj"> |
1469 | <Project>{fd0e8645-8d75-4e5a-bbbb-9b62b07f8465}</Project> |
||
1470 | <Name>Markus.ImageCompare</Name> |
||
1471 | </ProjectReference> |
||
1472 | 684ef11c | ljiyeon | <ProjectReference Include="..\ZoomAndPan\ZoomAndPan.csproj"> |
1473 | <Project>{6c950af4-04d2-4638-8b78-472e39f78b45}</Project> |
||
1474 | <Name>ZoomAndPan</Name> |
||
1475 | </ProjectReference> |
||
1476 | </ItemGroup> |
||
1477 | cdfb57ff | taeseongkim | <ItemGroup> |
1478 | <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> |
||
1479 | <Visible>False</Visible> |
||
1480 | <ProductName>.NET Framework 3.5 SP1</ProductName> |
||
1481 | <Install>false</Install> |
||
1482 | </BootstrapperPackage> |
||
1483 | </ItemGroup> |
||
1484 | 4fcd9bda | taeseongkim | <ItemGroup> |
1485 | ffa5dbc7 | taeseongkim | <None Include="obfuscar.xml"> |
1486 | <SubType>Designer</SubType> |
||
1487 | </None> |
||
1488 | 4fcd9bda | taeseongkim | </ItemGroup> |
1489 | ff01c725 | humkyung | <ItemGroup> |
1490 | 6b6e937c | taeseongkim | <None Include="Connected Services\KcomService\configuration91.svcinfo" /> |
1491 | </ItemGroup> |
||
1492 | <ItemGroup> |
||
1493 | <None Include="Connected Services\KcomService\configuration.svcinfo" /> |
||
1494 | </ItemGroup> |
||
1495 | <ItemGroup> |
||
1496 | <None Include="Connected Services\KcomService\Reference.svcmap"> |
||
1497 | <Generator>WCF Proxy Generator</Generator> |
||
1498 | <LastGenOutput>Reference.cs</LastGenOutput> |
||
1499 | </None> |
||
1500 | </ItemGroup> |
||
1501 | <ItemGroup> |
||
1502 | bae83c92 | taeseongkim | <Resource Include="Resources\Images\MenuImage_New\cloudRectArrowText.png" /> |
1503 | ff01c725 | humkyung | </ItemGroup> |
1504 | b74a9c91 | taeseongkim | <ItemGroup> |
1505 | bae83c92 | taeseongkim | <None Include="Connected Services\ServiceDeepView\ServiceDeepView11.disco" /> |
1506 | b74a9c91 | taeseongkim | </ItemGroup> |
1507 | 1305c420 | taeseongkim | <ItemGroup> |
1508 | <Resource Include="public.xml" /> |
||
1509 | </ItemGroup> |
||
1510 | cf1cc862 | taeseongkim | <ItemGroup> |
1511 | <None Include="Connected Services\KcomService\ServiceDeepView.disco" /> |
||
1512 | </ItemGroup> |
||
1513 | 6a19b48d | taeseongkim | <ItemGroup> |
1514 | <Resource Include="Resources\Images\MenuImage_New\check.png" /> |
||
1515 | </ItemGroup> |
||
1516 | <ItemGroup> |
||
1517 | <Resource Include="Resources\Images\MenuImage_New\lock_2.png" /> |
||
1518 | </ItemGroup> |
||
1519 | <ItemGroup> |
||
1520 | <Resource Include="Resources\Images\MenuImage_New\tips.png" /> |
||
1521 | </ItemGroup> |
||
1522 | f5f788c2 | taeseongkim | <ItemGroup> |
1523 | <Resource Include="Resources\Images\ExtImage\blank.png" /> |
||
1524 | </ItemGroup> |
||
1525 | 3abe8d4e | taeseongkim | <ItemGroup> |
1526 | <Resource Include="Resources\Images\MenuImage_New\rgb.png" /> |
||
1527 | </ItemGroup> |
||
1528 | 3b938959 | taeseongkim | <ItemGroup> |
1529 | <Resource Include="Resources\Images\ExtImage\refresh.png" /> |
||
1530 | </ItemGroup> |
||
1531 | 787a4489 | KangIngu | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
1532 | 274cde11 | taeseongkim | <Target Name="PostBuildMacros"> |
1533 | <GetAssemblyIdentity AssemblyFiles="$(TargetPath)"> |
||
1534 | <Output TaskParameter="Assemblies" ItemName="Targets" /> |
||
1535 | </GetAssemblyIdentity> |
||
1536 | <ItemGroup> |
||
1537 | <VersionNumber Include="@(Targets->'%(Version)')" /> |
||
1538 | </ItemGroup> |
||
1539 | </Target> |
||
1540 | e451c585 | ljiyeon | <PropertyGroup> |
1541 | 274cde11 | taeseongkim | <PostBuildEventDependsOn> |
1542 | $(PostBuildEventDependsOn); |
||
1543 | PostBuildMacros; |
||
1544 | </PostBuildEventDependsOn> |
||
1545 | <PostBuildEvent>if $(ConfigurationName) == Release_Default ( |
||
1546 | 5c64268e | taeseongkim | |
1547 | call $(SolutionDir)obfuscarBuild.Bat $(SolutionDir) $(TargetDir) $(ProjectDir)obfuscar.xml |
||
1548 | xcopy /s "$(TargetDir)Obfuscator_Output" "$(TargetDir)" /Y /F |
||
1549 | 3b938959 | taeseongkim | |
1550 | a197bf6f | taeseongkim | del "$(TargetDir)mapping.txt" /q |
1551 | |||
1552 | rem rmdir "$(TargetDir)Obfuscator_Output" /s /q |
||
1553 | rmdir "$(SolutionDir)Setup\Release_default\" /s /q |
||
1554 | 5c64268e | taeseongkim | |
1555 | xcopy "$(TargetDir)" "$(SolutionDir)Setup\Release_default\" /S /Y /F |
||
1556 | a197bf6f | taeseongkim | rem xcopy $(TargetDir)..\packages\potrace.exe |
1557 | 5c64268e | taeseongkim | |
1558 | 8ba5eb07 | taeseongkim | cd $(SolutionDir) |
1559 | 174cdd68 | taeseongkim | call "PublishSign.bat" |
1560 | 4eeb8027 | 이지연 | rem call "appCast_Daelim.bat" "@(VersionNumber)" |
1561 | 0f1cd125 | 이지연 | call "appCast_DIG.bat" "@(VersionNumber)" |
1562 | 253c9730 | taeseongkim | rem call "appCast_ETECH.bat" "@(VersionNumber)" |
1563 | 38d69491 | taeseongkim | rem call "appCast_DIG_DEBUG.bat" "@(VersionNumber)" |
1564 | 253c9730 | taeseongkim | rem call "appCast_SNI_SDMS.bat" "@(VersionNumber)" |
1565 | rem call "appCast_SNI_XICNA.bat" "@(VersionNumber)" |
||
1566 | dbddfdd0 | taeseongkim | rem call "appCast_doftech.bat" "@(VersionNumber)" |
1567 | 43e1d368 | taeseongkim | rem call "appCast_HS.bat" "@(VersionNumber)" |
1568 | 1d79913e | taeseongkim | rem "appCast_bseng.bat" "@(VersionNumber)" |
1569 | 43e1d368 | taeseongkim | rem call "appCast_Daelim_test.bat" "@(VersionNumber)" |
1570 | b481c7ab | taeseongkim | |
1571 | 5c64268e | taeseongkim | )</PostBuildEvent> |
1572 | e451c585 | ljiyeon | </PropertyGroup> |
1573 | 9f55b953 | taeseongkim | <UsingTask TaskName="TransformXml" AssemblyFile="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Web\Microsoft.Web.Publishing.Tasks.dll" /> |
1574 | <Target Name="app_config_AfterCompile" AfterTargets="AfterCompile" Condition="Exists('app.$(Configuration).config')"> |
||
1575 | <!--Generate transformed app config in the intermediate directory--> |
||
1576 | <TransformXml Source="app.config" Destination="$(IntermediateOutputPath)$(TargetFileName).config" Transform="app.$(Configuration).config" /> |
||
1577 | <!--Force build process to use the transformed configuration file from now on.--> |
||
1578 | <ItemGroup> |
||
1579 | <AppConfigWithTargetPath Remove="App.config" /> |
||
1580 | <AppConfigWithTargetPath Include="$(IntermediateOutputPath)$(TargetFileName).config"> |
||
1581 | <TargetPath>$(TargetFileName).config</TargetPath> |
||
1582 | </AppConfigWithTargetPath> |
||
1583 | </ItemGroup> |
||
1584 | </Target> |
||
1585 | <!--Override After Publish to support ClickOnce AfterPublish. Target replaces the untransformed config file copied to the deployment directory with the transformed one.--> |
||
1586 | <Target Name="app_config_AfterPublish" AfterTargets="AfterPublish" Condition="Exists('app.$(Configuration).config')"> |
||
1587 | <PropertyGroup> |
||
1588 | <DeployedConfig>$(_DeploymentApplicationDir)$(TargetName)$(TargetExt).config$(_DeploymentFileMappingExtension)</DeployedConfig> |
||
1589 | </PropertyGroup> |
||
1590 | <!--Publish copies the untransformed App.config to deployment directory so overwrite it--> |
||
1591 | <Copy Condition="Exists('$(DeployedConfig)')" SourceFiles="$(IntermediateOutputPath)$(TargetFileName).config" DestinationFiles="$(DeployedConfig)" /> |
||
1592 | </Target> |
||
1593 | <PropertyGroup> |
||
1594 | 4fcb686a | taeseongkim | <PreBuildEvent>Taskkill /IM DownloadManager.exe /F |
1595 | |||
1596 | IF NOT EXIST $(TargetDir)Plugin ( |
||
1597 | c0ec90f3 | taeseongkim | mkdir $(TargetDir)Plugin |
1598 | ) |
||
1599 | |||
1600 | xcopy $(ProjectDir)..\publish\Downloader\*.* $(TargetDir)Plugin\*.* /I /E /S /Y /F |
||
1601 | 2007ecaa | taeseongkim | |
1602 | if $(ConfigurationName) == Debug ( |
||
1603 | 77cdac33 | taeseongkim | REM xcopy /s "$(ProjectDir)..\INI\MARKUS.ini" "$(TargetDir)MARKUS.*" /Y /F |
1604 | f882e166 | taeseongkim | ) |
1605 | |||
1606 | e13b43de | taeseongkim | if $(ConfigurationName) == Release_Default ( |
1607 | 36425a72 | 이지연 | xcopy /s "$(ProjectDir)..\INI\MARKUS_DIG.ini" "$(TargetDir)MARKUS.*" /Y /F |
1608 | e13b43de | taeseongkim | ) |
1609 | 664ea2e1 | taeseongkim | |
1610 | 195f079d | taeseongkim | if $(ConfigurationName) == Debug_DIG ( |
1611 | xcopy /s "$(ProjectDir)..\INI\MARKUS_DIG_DEBUG.ini" "$(TargetDir)MARKUS.*" /Y /F |
||
1612 | ) |
||
1613 | |||
1614 | f882e166 | taeseongkim | if $(ConfigurationName) == Debug_Daelim ( |
1615 | 907a99b3 | taeseongkim | xcopy /s "$(ProjectDir)..\INI\MARKUS_Daelim_REMOTE.ini" "$(TargetDir)MARKUS.*" /Y /F |
1616 | f882e166 | taeseongkim | ) |
1617 | |||
1618 | 9d5b4bc2 | taeseongkim | if $(ConfigurationName) == Daelim_RemoteTest ( |
1619 | e13b43de | taeseongkim | xcopy /s "$(ProjectDir)..\INI\MARKUS_DAELIM_REMOTE.ini" "$(TargetDir)MARKUS.*" /Y /F |
1620 | 9d5b4bc2 | taeseongkim | ) |
1621 | |||
1622 | f882e166 | taeseongkim | if $(ConfigurationName) == Debug_DevDoftech ( |
1623 | e13b43de | taeseongkim | xcopy /s "$(ProjectDir)..\INI\MARKUS_Doftech.ini" "$(TargetDir)MARKUS.*" /Y /F |
1624 | f882e166 | taeseongkim | ) |
1625 | |||
1626 | if $(ConfigurationName) == Debug_HyoSung ( |
||
1627 | e13b43de | taeseongkim | xcopy /s "$(ProjectDir)..\INI\MARKUS_HyoSung_Debug.ini" "$(TargetDir)MARKUS.*" /Y /F |
1628 | f882e166 | taeseongkim | ) |
1629 | |||
1630 | if $(ConfigurationName) == Release_HyoSung ( |
||
1631 | e13b43de | taeseongkim | xcopy /s "$(ProjectDir)..\INI\MARKUS_HyoSung.ini" "$(TargetDir)MARKUS.*" /Y /F |
1632 | f882e166 | taeseongkim | ) |
1633 | if $(ConfigurationName) == Release_PEMSS ( |
||
1634 | e13b43de | taeseongkim | xcopy /s "$(ProjectDir)..\INI\MARKUS_PEMSS.ini" "$(TargetDir)MARKUS.*" /Y /F |
1635 | f882e166 | taeseongkim | ) |
1636 | 77cdac33 | taeseongkim | if $(ConfigurationName) == Release_BSENG ( |
1637 | xcopy /s "$(ProjectDir)..\INI\MARKUS_BSENG.ini" "$(TargetDir)MARKUS.*" /Y /F |
||
1638 | ) |
||
1639 | f882e166 | taeseongkim | if $(ConfigurationName) == Debug_SNI ( |
1640 | 5639752b | taeseongkim | xcopy /s "$(ProjectDir)..\INI\MARKUS_SNI_XICNA.ini" "$(TargetDir)MARKUS.*" /Y /F |
1641 | b42dd24d | taeseongkim | ) |
1642 | |||
1643 | 4eeb8027 | 이지연 | rem xcopy /s "$(ProjectDir)..\INI\MARKUS_Daelim.ini" "$(TargetDir)MARKUS.*" /Y /F</PreBuildEvent> |
1644 | 9f55b953 | taeseongkim | </PropertyGroup> |
1645 | 80856edb | taeseongkim | <Target Name="app_Release_config_AfterBuild" AfterTargets="AfterBuild" Condition="Exists('app.Release.$(Configuration).config')"> |
1646 | <TransformXml Source="app.Release.config" Destination="$(OutputPath)app.Release.config" Transform="app.Release.$(Configuration).config" /> |
||
1647 | </Target> |
||
1648 | 30878507 | taeseongkim | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
1649 | <PropertyGroup> |
||
1650 | <ErrorText>이 프로젝트는 이 컴퓨터에 없는 NuGet 패키지를 참조합니다. 해당 패키지를 다운로드하려면 NuGet 패키지 복원을 사용하십시오. 자세한 내용은 http://go.microsoft.com/fwlink/?LinkID=322105를 참조하십시오. 누락된 파일은 {0}입니다.</ErrorText> |
||
1651 | </PropertyGroup> |
||
1652 | <Error Condition="!Exists('..\packages\Obfuscar.2.2.29\build\obfuscar.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Obfuscar.2.2.29\build\obfuscar.props'))" /> |
||
1653 | 2b1f30fe | taeseongkim | <Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.4.2.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.4.2.0\build\Microsoft.Net.Compilers.props'))" /> |
1654 | 30878507 | taeseongkim | </Target> |
1655 | 787a4489 | KangIngu | </Project> |