1 |
nash |
7003 |
<?xml version="1.0" encoding="Windows-1252"?> |
2 |
|
|
<VisualStudioProject |
3 |
|
|
ProjectType="Visual C++" |
4 |
|
|
Version="8.00" |
5 |
|
|
Name="repro" |
6 |
|
|
ProjectGUID="{9D8D2649-213F-49D3-A8B0-C1849C611654}" |
7 |
|
|
RootNamespace="repro" |
8 |
|
|
Keyword="Win32Proj" |
9 |
|
|
> |
10 |
|
|
<Platforms> |
11 |
|
|
<Platform |
12 |
|
|
Name="Win32" |
13 |
|
|
/> |
14 |
|
|
</Platforms> |
15 |
|
|
<ToolFiles> |
16 |
|
|
</ToolFiles> |
17 |
|
|
<Configurations> |
18 |
|
|
<Configuration |
19 |
|
|
Name="Debug|Win32" |
20 |
|
|
OutputDirectory="Debug" |
21 |
|
|
IntermediateDirectory="Debug" |
22 |
|
|
ConfigurationType="1" |
23 |
|
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" |
24 |
|
|
CharacterSet="2" |
25 |
|
|
> |
26 |
|
|
<Tool |
27 |
|
|
Name="VCPreBuildEventTool" |
28 |
|
|
CommandLine="echo Generating reproInfo.hxx

@echo off & setlocal enableextensions enabledelayedexpansion
echo #define REPRO_BUILD_HOST "%COMPUTERNAME%" > reproInfo.hxx

:: Get VERSION in a variable
set lineNro_=
for /f "tokens=* delims=" %%r in ('type VERSION') do (
set /a lineNro_+=1
echo @set line!lineNro_!_=%%r>>%temp%\tmp$$$.cmd)
call %temp%\tmp$$$.cmd
del %temp%\tmp$$$.cmd

echo #define REPRO_RELEASE_VERSION "%line1_%" >> reproInfo.hxx

endlocal
" |
29 |
|
|
/> |
30 |
|
|
<Tool |
31 |
|
|
Name="VCCustomBuildTool" |
32 |
|
|
/> |
33 |
|
|
<Tool |
34 |
|
|
Name="VCXMLDataGeneratorTool" |
35 |
|
|
/> |
36 |
|
|
<Tool |
37 |
|
|
Name="VCWebServiceProxyGeneratorTool" |
38 |
|
|
/> |
39 |
|
|
<Tool |
40 |
|
|
Name="VCMIDLTool" |
41 |
|
|
/> |
42 |
|
|
<Tool |
43 |
|
|
Name="VCCLCompilerTool" |
44 |
|
|
Optimization="0" |
45 |
|
|
AdditionalIncludeDirectories=""$(ProjectDir)../";"$(ProjectDir)../resip/stack";"$(ProjectDir)../contrib/db/build_win32";"$(ProjectDir)../contrib/pcre";"$(ProjectDir)../contrib/popt/win32/include"" |
46 |
|
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;HAVE_POPT_H;USE_IPV6" |
47 |
|
|
MinimalRebuild="true" |
48 |
|
|
BasicRuntimeChecks="3" |
49 |
|
|
RuntimeLibrary="3" |
50 |
|
|
RuntimeTypeInfo="true" |
51 |
|
|
UsePrecompiledHeader="0" |
52 |
|
|
WarningLevel="3" |
53 |
|
|
Detect64BitPortabilityProblems="false" |
54 |
|
|
DebugInformationFormat="4" |
55 |
|
|
/> |
56 |
|
|
<Tool |
57 |
|
|
Name="VCManagedResourceCompilerTool" |
58 |
|
|
/> |
59 |
|
|
<Tool |
60 |
|
|
Name="VCResourceCompilerTool" |
61 |
|
|
/> |
62 |
|
|
<Tool |
63 |
|
|
Name="VCPreLinkEventTool" |
64 |
|
|
/> |
65 |
|
|
<Tool |
66 |
|
|
Name="VCLinkerTool" |
67 |
jmatthewsr |
8500 |
AdditionalDependencies="Ws2_32.lib Iphlpapi.lib Dnsapi.lib winmm.lib "$(ProjectDir)..\contrib\popt\win32\lib\libpopt.lib"" |
68 |
nash |
7003 |
OutputFile="$(OutDir)/repro.exe" |
69 |
|
|
LinkIncremental="2" |
70 |
|
|
GenerateDebugInformation="true" |
71 |
|
|
ProgramDatabaseFile="$(OutDir)/repro.pdb" |
72 |
|
|
SubSystem="1" |
73 |
|
|
TargetMachine="1" |
74 |
|
|
/> |
75 |
|
|
<Tool |
76 |
|
|
Name="VCALinkTool" |
77 |
|
|
/> |
78 |
|
|
<Tool |
79 |
|
|
Name="VCManifestTool" |
80 |
|
|
/> |
81 |
|
|
<Tool |
82 |
|
|
Name="VCXDCMakeTool" |
83 |
|
|
/> |
84 |
|
|
<Tool |
85 |
|
|
Name="VCBscMakeTool" |
86 |
|
|
/> |
87 |
|
|
<Tool |
88 |
|
|
Name="VCFxCopTool" |
89 |
|
|
/> |
90 |
|
|
<Tool |
91 |
|
|
Name="VCAppVerifierTool" |
92 |
|
|
/> |
93 |
|
|
<Tool |
94 |
|
|
Name="VCWebDeploymentTool" |
95 |
|
|
/> |
96 |
|
|
<Tool |
97 |
|
|
Name="VCPostBuildEventTool" |
98 |
|
|
/> |
99 |
|
|
</Configuration> |
100 |
|
|
<Configuration |
101 |
|
|
Name="Release|Win32" |
102 |
|
|
OutputDirectory="Release" |
103 |
|
|
IntermediateDirectory="Release" |
104 |
|
|
ConfigurationType="1" |
105 |
|
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" |
106 |
|
|
CharacterSet="2" |
107 |
|
|
> |
108 |
|
|
<Tool |
109 |
|
|
Name="VCPreBuildEventTool" |
110 |
|
|
CommandLine="echo Generating reproInfo.hxx

@echo off & setlocal enableextensions enabledelayedexpansion
echo #define REPRO_BUILD_HOST "%COMPUTERNAME%" > reproInfo.hxx

:: Get VERSION in a variable
set lineNro_=
for /f "tokens=* delims=" %%r in ('type VERSION') do (
set /a lineNro_+=1
echo @set line!lineNro_!_=%%r>>%temp%\tmp$$$.cmd)
call %temp%\tmp$$$.cmd
del %temp%\tmp$$$.cmd

echo #define REPRO_RELEASE_VERSION "%line1_%" >> reproInfo.hxx

endlocal
" |
111 |
|
|
/> |
112 |
|
|
<Tool |
113 |
|
|
Name="VCCustomBuildTool" |
114 |
|
|
/> |
115 |
|
|
<Tool |
116 |
|
|
Name="VCXMLDataGeneratorTool" |
117 |
|
|
/> |
118 |
|
|
<Tool |
119 |
|
|
Name="VCWebServiceProxyGeneratorTool" |
120 |
|
|
/> |
121 |
|
|
<Tool |
122 |
|
|
Name="VCMIDLTool" |
123 |
|
|
/> |
124 |
|
|
<Tool |
125 |
|
|
Name="VCCLCompilerTool" |
126 |
|
|
AdditionalIncludeDirectories=""$(ProjectDir)../";"$(ProjectDir)../resip/stack";"$(ProjectDir)../contrib/db/build_win32";"$(ProjectDir)../contrib/pcre";"$(ProjectDir)../contrib/popt/win32/include"" |
127 |
|
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;HAVE_POPT_H;USE_IPV6" |
128 |
|
|
RuntimeLibrary="2" |
129 |
|
|
RuntimeTypeInfo="true" |
130 |
|
|
UsePrecompiledHeader="0" |
131 |
|
|
WarningLevel="3" |
132 |
|
|
Detect64BitPortabilityProblems="false" |
133 |
|
|
DebugInformationFormat="3" |
134 |
|
|
/> |
135 |
|
|
<Tool |
136 |
|
|
Name="VCManagedResourceCompilerTool" |
137 |
|
|
/> |
138 |
|
|
<Tool |
139 |
|
|
Name="VCResourceCompilerTool" |
140 |
|
|
/> |
141 |
|
|
<Tool |
142 |
|
|
Name="VCPreLinkEventTool" |
143 |
|
|
/> |
144 |
|
|
<Tool |
145 |
|
|
Name="VCLinkerTool" |
146 |
jmatthewsr |
8500 |
AdditionalDependencies="Ws2_32.lib Iphlpapi.lib Dnsapi.lib winmm.lib "$(ProjectDir)..\contrib\popt\win32\lib\libpopt.lib"" |
147 |
nash |
7003 |
OutputFile="$(OutDir)/repro.exe" |
148 |
|
|
LinkIncremental="1" |
149 |
|
|
GenerateDebugInformation="true" |
150 |
|
|
SubSystem="1" |
151 |
|
|
OptimizeReferences="2" |
152 |
|
|
EnableCOMDATFolding="2" |
153 |
|
|
TargetMachine="1" |
154 |
|
|
/> |
155 |
|
|
<Tool |
156 |
|
|
Name="VCALinkTool" |
157 |
|
|
/> |
158 |
|
|
<Tool |
159 |
|
|
Name="VCManifestTool" |
160 |
|
|
/> |
161 |
|
|
<Tool |
162 |
|
|
Name="VCXDCMakeTool" |
163 |
|
|
/> |
164 |
|
|
<Tool |
165 |
|
|
Name="VCBscMakeTool" |
166 |
|
|
/> |
167 |
|
|
<Tool |
168 |
|
|
Name="VCFxCopTool" |
169 |
|
|
/> |
170 |
|
|
<Tool |
171 |
|
|
Name="VCAppVerifierTool" |
172 |
|
|
/> |
173 |
|
|
<Tool |
174 |
|
|
Name="VCWebDeploymentTool" |
175 |
|
|
/> |
176 |
|
|
<Tool |
177 |
|
|
Name="VCPostBuildEventTool" |
178 |
|
|
/> |
179 |
|
|
</Configuration> |
180 |
|
|
<Configuration |
181 |
|
|
Name="SSL-Debug|Win32" |
182 |
|
|
OutputDirectory="$(ConfigurationName)" |
183 |
|
|
IntermediateDirectory="$(ConfigurationName)" |
184 |
|
|
ConfigurationType="1" |
185 |
|
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" |
186 |
|
|
CharacterSet="2" |
187 |
|
|
> |
188 |
|
|
<Tool |
189 |
|
|
Name="VCPreBuildEventTool" |
190 |
|
|
CommandLine="echo Generating reproInfo.hxx

@echo off & setlocal enableextensions enabledelayedexpansion
echo #define REPRO_BUILD_HOST "%COMPUTERNAME%" > reproInfo.hxx

:: Get VERSION in a variable
set lineNro_=
for /f "tokens=* delims=" %%r in ('type VERSION') do (
set /a lineNro_+=1
echo @set line!lineNro_!_=%%r>>%temp%\tmp$$$.cmd)
call %temp%\tmp$$$.cmd
del %temp%\tmp$$$.cmd

echo #define REPRO_RELEASE_VERSION "%line1_%" >> reproInfo.hxx

endlocal
" |
191 |
|
|
/> |
192 |
|
|
<Tool |
193 |
|
|
Name="VCCustomBuildTool" |
194 |
|
|
/> |
195 |
|
|
<Tool |
196 |
|
|
Name="VCXMLDataGeneratorTool" |
197 |
|
|
/> |
198 |
|
|
<Tool |
199 |
|
|
Name="VCWebServiceProxyGeneratorTool" |
200 |
|
|
/> |
201 |
|
|
<Tool |
202 |
|
|
Name="VCMIDLTool" |
203 |
|
|
/> |
204 |
|
|
<Tool |
205 |
|
|
Name="VCCLCompilerTool" |
206 |
|
|
Optimization="0" |
207 |
sgodin |
7761 |
AdditionalIncludeDirectories=""$(ProjectDir)../";"$(ProjectDir)../resip/stack";"$(ProjectDir)../contrib/db/build_win32";"$(ProjectDir)../contrib/pcre";"$(ProjectDir)../contrib/popt/win32/include";"$(ProjectDir)../contrib/openssl/include";"$(ProjectDir)../contrib/openssl/inc32"" |
208 |
nash |
7003 |
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;HAVE_POPT_H;USE_SSL;USE_IPV6" |
209 |
|
|
MinimalRebuild="true" |
210 |
|
|
BasicRuntimeChecks="3" |
211 |
|
|
RuntimeLibrary="3" |
212 |
|
|
RuntimeTypeInfo="true" |
213 |
|
|
UsePrecompiledHeader="0" |
214 |
|
|
WarningLevel="3" |
215 |
|
|
Detect64BitPortabilityProblems="false" |
216 |
|
|
DebugInformationFormat="4" |
217 |
|
|
/> |
218 |
|
|
<Tool |
219 |
|
|
Name="VCManagedResourceCompilerTool" |
220 |
|
|
/> |
221 |
|
|
<Tool |
222 |
|
|
Name="VCResourceCompilerTool" |
223 |
|
|
/> |
224 |
|
|
<Tool |
225 |
|
|
Name="VCPreLinkEventTool" |
226 |
|
|
/> |
227 |
|
|
<Tool |
228 |
|
|
Name="VCLinkerTool" |
229 |
jmatthewsr |
8500 |
AdditionalDependencies="Ws2_32.lib Dnsapi.lib Iphlpapi.lib winmm.lib crypt32.lib "$(ProjectDir)..\contrib\openssl\lib\vc\static\libeay32MDd.lib" "$(ProjectDir)..\contrib\openssl\lib\vc\static\ssleay32MDd.lib" "$(ProjectDir)..\contrib\popt\win32\lib\libpopt.lib"" |
230 |
nash |
7003 |
OutputFile="$(OutDir)/repro.exe" |
231 |
|
|
LinkIncremental="2" |
232 |
|
|
GenerateDebugInformation="true" |
233 |
|
|
ProgramDatabaseFile="$(OutDir)/repro.pdb" |
234 |
|
|
SubSystem="1" |
235 |
|
|
TargetMachine="1" |
236 |
|
|
/> |
237 |
|
|
<Tool |
238 |
|
|
Name="VCALinkTool" |
239 |
|
|
/> |
240 |
|
|
<Tool |
241 |
|
|
Name="VCManifestTool" |
242 |
|
|
/> |
243 |
|
|
<Tool |
244 |
|
|
Name="VCXDCMakeTool" |
245 |
|
|
/> |
246 |
|
|
<Tool |
247 |
|
|
Name="VCBscMakeTool" |
248 |
|
|
/> |
249 |
|
|
<Tool |
250 |
|
|
Name="VCFxCopTool" |
251 |
|
|
/> |
252 |
|
|
<Tool |
253 |
|
|
Name="VCAppVerifierTool" |
254 |
|
|
/> |
255 |
|
|
<Tool |
256 |
|
|
Name="VCWebDeploymentTool" |
257 |
|
|
/> |
258 |
|
|
<Tool |
259 |
|
|
Name="VCPostBuildEventTool" |
260 |
|
|
/> |
261 |
|
|
</Configuration> |
262 |
|
|
<Configuration |
263 |
|
|
Name="SSL-Release|Win32" |
264 |
|
|
OutputDirectory="$(ConfigurationName)" |
265 |
|
|
IntermediateDirectory="$(ConfigurationName)" |
266 |
|
|
ConfigurationType="1" |
267 |
|
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" |
268 |
|
|
CharacterSet="2" |
269 |
|
|
> |
270 |
|
|
<Tool |
271 |
|
|
Name="VCPreBuildEventTool" |
272 |
|
|
CommandLine="echo Generating reproInfo.hxx

@echo off & setlocal enableextensions enabledelayedexpansion
echo #define REPRO_BUILD_HOST "%COMPUTERNAME%" > reproInfo.hxx

:: Get VERSION in a variable
set lineNro_=
for /f "tokens=* delims=" %%r in ('type VERSION') do (
set /a lineNro_+=1
echo @set line!lineNro_!_=%%r>>%temp%\tmp$$$.cmd)
call %temp%\tmp$$$.cmd
del %temp%\tmp$$$.cmd

echo #define REPRO_RELEASE_VERSION "%line1_%" >> reproInfo.hxx

endlocal
" |
273 |
|
|
/> |
274 |
|
|
<Tool |
275 |
|
|
Name="VCCustomBuildTool" |
276 |
|
|
/> |
277 |
|
|
<Tool |
278 |
|
|
Name="VCXMLDataGeneratorTool" |
279 |
|
|
/> |
280 |
|
|
<Tool |
281 |
|
|
Name="VCWebServiceProxyGeneratorTool" |
282 |
|
|
/> |
283 |
|
|
<Tool |
284 |
|
|
Name="VCMIDLTool" |
285 |
|
|
/> |
286 |
|
|
<Tool |
287 |
|
|
Name="VCCLCompilerTool" |
288 |
sgodin |
7761 |
AdditionalIncludeDirectories=""$(ProjectDir)../";"$(ProjectDir)../resip/stack";"$(ProjectDir)../contrib/db/build_win32";"$(ProjectDir)../contrib/pcre";"$(ProjectDir)../contrib/popt/win32/include";"$(ProjectDir)../contrib/openssl/include";"$(ProjectDir)../contrib/openssl/inc32"" |
289 |
sgodin |
8156 |
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;HAVE_POPT_H;USE_SSL;USE_IPV6" |
290 |
nash |
7003 |
RuntimeLibrary="2" |
291 |
|
|
RuntimeTypeInfo="true" |
292 |
|
|
UsePrecompiledHeader="0" |
293 |
|
|
WarningLevel="3" |
294 |
|
|
Detect64BitPortabilityProblems="false" |
295 |
|
|
DebugInformationFormat="3" |
296 |
|
|
/> |
297 |
|
|
<Tool |
298 |
|
|
Name="VCManagedResourceCompilerTool" |
299 |
|
|
/> |
300 |
|
|
<Tool |
301 |
|
|
Name="VCResourceCompilerTool" |
302 |
|
|
/> |
303 |
|
|
<Tool |
304 |
|
|
Name="VCPreLinkEventTool" |
305 |
|
|
/> |
306 |
|
|
<Tool |
307 |
|
|
Name="VCLinkerTool" |
308 |
jmatthewsr |
8500 |
AdditionalDependencies="Ws2_32.lib Dnsapi.lib Iphlpapi.lib winmm.lib crypt32.lib "$(ProjectDir)..\contrib\openssl\lib\vc\static\libeay32MD.lib" "$(ProjectDir)..\contrib\openssl\lib\vc\static\ssleay32MD.lib" "$(ProjectDir)..\contrib\popt\win32\lib\libpopt.lib"" |
309 |
nash |
7003 |
OutputFile="$(OutDir)/repro.exe" |
310 |
|
|
LinkIncremental="1" |
311 |
|
|
GenerateDebugInformation="true" |
312 |
|
|
SubSystem="1" |
313 |
|
|
OptimizeReferences="2" |
314 |
|
|
EnableCOMDATFolding="2" |
315 |
|
|
TargetMachine="1" |
316 |
|
|
/> |
317 |
|
|
<Tool |
318 |
|
|
Name="VCALinkTool" |
319 |
|
|
/> |
320 |
|
|
<Tool |
321 |
|
|
Name="VCManifestTool" |
322 |
|
|
/> |
323 |
|
|
<Tool |
324 |
|
|
Name="VCXDCMakeTool" |
325 |
|
|
/> |
326 |
|
|
<Tool |
327 |
|
|
Name="VCBscMakeTool" |
328 |
|
|
/> |
329 |
|
|
<Tool |
330 |
|
|
Name="VCFxCopTool" |
331 |
|
|
/> |
332 |
|
|
<Tool |
333 |
|
|
Name="VCAppVerifierTool" |
334 |
|
|
/> |
335 |
|
|
<Tool |
336 |
|
|
Name="VCWebDeploymentTool" |
337 |
|
|
/> |
338 |
|
|
<Tool |
339 |
|
|
Name="VCPostBuildEventTool" |
340 |
|
|
/> |
341 |
|
|
</Configuration> |
342 |
|
|
</Configurations> |
343 |
|
|
<References> |
344 |
|
|
</References> |
345 |
|
|
<Files> |
346 |
|
|
<Filter |
347 |
|
|
Name="Source Files" |
348 |
|
|
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx" |
349 |
|
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}" |
350 |
|
|
> |
351 |
|
|
<File |
352 |
|
|
RelativePath=".\BerkeleyDb.cxx" |
353 |
|
|
> |
354 |
|
|
</File> |
355 |
|
|
<File |
356 |
|
|
RelativePath=".\CommandLineParser.cxx" |
357 |
|
|
> |
358 |
|
|
</File> |
359 |
|
|
<File |
360 |
|
|
RelativePath=".\HttpBase.cxx" |
361 |
|
|
> |
362 |
|
|
</File> |
363 |
|
|
<File |
364 |
|
|
RelativePath=".\HttpConnection.cxx" |
365 |
|
|
> |
366 |
|
|
</File> |
367 |
|
|
<File |
368 |
|
|
RelativePath=".\repro.cxx" |
369 |
|
|
> |
370 |
|
|
</File> |
371 |
|
|
<File |
372 |
|
|
RelativePath=".\ReproVersion.cxx" |
373 |
|
|
> |
374 |
|
|
</File> |
375 |
|
|
<File |
376 |
|
|
RelativePath=".\WebAdmin.cxx" |
377 |
|
|
> |
378 |
|
|
</File> |
379 |
|
|
<File |
380 |
|
|
RelativePath=".\WebAdminThread.cxx" |
381 |
|
|
> |
382 |
|
|
</File> |
383 |
|
|
</Filter> |
384 |
|
|
<Filter |
385 |
|
|
Name="Header Files" |
386 |
|
|
Filter="h;hpp;hxx;hm;inl;inc;xsd" |
387 |
|
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}" |
388 |
|
|
> |
389 |
|
|
<File |
390 |
|
|
RelativePath=".\BerkeleyDb.hxx" |
391 |
|
|
> |
392 |
|
|
</File> |
393 |
|
|
<File |
394 |
|
|
RelativePath=".\CommandLineParser.hxx" |
395 |
|
|
> |
396 |
|
|
</File> |
397 |
|
|
<File |
398 |
|
|
RelativePath=".\HttpBase.hxx" |
399 |
|
|
> |
400 |
|
|
</File> |
401 |
|
|
<File |
402 |
|
|
RelativePath=".\HttpConnection.hxx" |
403 |
|
|
> |
404 |
|
|
</File> |
405 |
|
|
<File |
406 |
|
|
RelativePath=".\ReproVersion.hxx" |
407 |
|
|
> |
408 |
|
|
</File> |
409 |
|
|
<File |
410 |
|
|
RelativePath=".\WebAdmin.hxx" |
411 |
|
|
> |
412 |
|
|
</File> |
413 |
|
|
<File |
414 |
|
|
RelativePath=".\WebAdminThread.hxx" |
415 |
|
|
> |
416 |
|
|
</File> |
417 |
|
|
</Filter> |
418 |
|
|
<Filter |
419 |
|
|
Name="Resource Files" |
420 |
|
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx" |
421 |
|
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" |
422 |
|
|
> |
423 |
|
|
</Filter> |
424 |
|
|
<File |
425 |
|
|
RelativePath=".\webadmin\pageOutlinePost.ixx" |
426 |
|
|
> |
427 |
|
|
</File> |
428 |
|
|
<File |
429 |
|
|
RelativePath=".\webadmin\pageOutlinePre.ixx" |
430 |
|
|
> |
431 |
|
|
</File> |
432 |
|
|
</Files> |
433 |
|
|
<Globals> |
434 |
|
|
</Globals> |
435 |
|
|
</VisualStudioProject> |