Subversion Repositories spk

Rev

Rev 148 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
121 cycrow 1
<?xml version="1.0" encoding="utf-8"?>
2
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <ItemGroup Label="ProjectConfigurations">
4
    <ProjectConfiguration Include="Debug|Win32">
5
      <Configuration>Debug</Configuration>
6
      <Platform>Win32</Platform>
7
    </ProjectConfiguration>
8
    <ProjectConfiguration Include="Debug|x64">
9
      <Configuration>Debug</Configuration>
10
      <Platform>x64</Platform>
11
    </ProjectConfiguration>
12
    <ProjectConfiguration Include="Release|Win32">
13
      <Configuration>Release</Configuration>
14
      <Platform>Win32</Platform>
15
    </ProjectConfiguration>
16
    <ProjectConfiguration Include="Release|x64">
17
      <Configuration>Release</Configuration>
18
      <Platform>x64</Platform>
19
    </ProjectConfiguration>
20
  </ItemGroup>
21
  <PropertyGroup Label="Globals">
22
    <ProjectGuid>{185E2678-8252-47C3-AAA8-535E4CB769C1}</ProjectGuid>
23
    <RootNamespace>Creator</RootNamespace>
24
    <Keyword>ManagedCProj</Keyword>
148 cycrow 25
    <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
121 cycrow 26
  </PropertyGroup>
27
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
28
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
29
    <ConfigurationType>Application</ConfigurationType>
148 cycrow 30
    <PlatformToolset>v143</PlatformToolset>
121 cycrow 31
    <CharacterSet>Unicode</CharacterSet>
32
    <CLRSupport>true</CLRSupport>
33
    <WholeProgramOptimization>true</WholeProgramOptimization>
34
  </PropertyGroup>
35
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
36
    <ConfigurationType>Application</ConfigurationType>
148 cycrow 37
    <PlatformToolset>v143</PlatformToolset>
121 cycrow 38
    <CharacterSet>Unicode</CharacterSet>
39
    <CLRSupport>true</CLRSupport>
40
  </PropertyGroup>
41
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
42
    <ConfigurationType>Application</ConfigurationType>
148 cycrow 43
    <PlatformToolset>v143</PlatformToolset>
121 cycrow 44
    <CharacterSet>Unicode</CharacterSet>
45
    <CLRSupport>true</CLRSupport>
46
    <WholeProgramOptimization>true</WholeProgramOptimization>
47
  </PropertyGroup>
48
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
49
    <ConfigurationType>Application</ConfigurationType>
148 cycrow 50
    <PlatformToolset>v143</PlatformToolset>
121 cycrow 51
    <CharacterSet>Unicode</CharacterSet>
52
    <CLRSupport>true</CLRSupport>
53
  </PropertyGroup>
54
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
55
  <ImportGroup Label="ExtensionSettings">
56
  </ImportGroup>
57
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
58
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
59
  </ImportGroup>
60
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
61
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
62
  </ImportGroup>
63
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
64
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65
  </ImportGroup>
66
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
67
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
68
  </ImportGroup>
69
  <PropertyGroup Label="UserMacros" />
70
  <PropertyGroup>
71
    <_ProjectFileVersion>14.0.25431.1</_ProjectFileVersion>
72
  </PropertyGroup>
73
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
74
    <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
75
    <IntDir>$(SolutionDir)$(Configuration)\Creator\</IntDir>
76
    <LinkIncremental>true</LinkIncremental>
77
  </PropertyGroup>
78
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
79
    <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
80
    <IntDir>$(SolutionDir)$(Configuration)\Creator\</IntDir>
81
    <LinkIncremental>false</LinkIncremental>
82
  </PropertyGroup>
83
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
84
    <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
85
    <IntDir>$(Platform)\$(Configuration)\</IntDir>
86
    <LinkIncremental>true</LinkIncremental>
87
  </PropertyGroup>
88
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
89
    <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
90
    <IntDir>$(Platform)\$(Configuration)\</IntDir>
91
    <LinkIncremental>false</LinkIncremental>
92
  </PropertyGroup>
93
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
94
    <ClCompile>
95
      <Optimization>Disabled</Optimization>
96
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
97
      <PreprocessorDefinitions>WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_SPKDLL;_STRINGCLR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
98
      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
99
      <PrecompiledHeader />
100
      <WarningLevel>Level3</WarningLevel>
101
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
125 cycrow 102
      <MinimalRebuild>false</MinimalRebuild>
121 cycrow 103
    </ClCompile>
104
    <Link>
105
      <AdditionalDependencies>shell32.lib</AdditionalDependencies>
106
      <GenerateDebugInformation>true</GenerateDebugInformation>
107
      <AssemblyDebug>true</AssemblyDebug>
108
      <SubSystem>Windows</SubSystem>
109
      <EntryPointSymbol>main</EntryPointSymbol>
110
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
111
      <DataExecutionPrevention />
112
      <TargetMachine>MachineX86</TargetMachine>
113
    </Link>
114
    <EmbeddedResource>
115
      <LogicalName>$(RootNamespace).%(Filename).resources</LogicalName>
116
    </EmbeddedResource>
237 cycrow 117
    <ResourceCompile>
118
      <Culture>0x0809</Culture>
119
    </ResourceCompile>
121 cycrow 120
  </ItemDefinitionGroup>
121
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
122
    <ClCompile>
123
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
124
      <PreprocessorDefinitions>WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_SPKDLL;_STRINGCLR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
125
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
126
      <PrecompiledHeader />
127
      <WarningLevel>Level3</WarningLevel>
128
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
129
    </ClCompile>
130
    <Link>
131
      <AdditionalDependencies>shell32.lib</AdditionalDependencies>
132
      <GenerateDebugInformation>false</GenerateDebugInformation>
133
      <SubSystem>Windows</SubSystem>
134
      <EntryPointSymbol>main</EntryPointSymbol>
135
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
136
      <DataExecutionPrevention />
137
      <TargetMachine>MachineX86</TargetMachine>
138
    </Link>
123 cycrow 139
    <EmbeddedResource>
140
      <LogicalName>$(RootNamespace).%(Filename).resources</LogicalName>
141
    </EmbeddedResource>
121 cycrow 142
  </ItemDefinitionGroup>
143
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
144
    <Midl>
145
      <TargetEnvironment>X64</TargetEnvironment>
146
    </Midl>
147
    <ClCompile>
148
      <Optimization>Disabled</Optimization>
149
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
150
      <PreprocessorDefinitions>WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_SPKDLL;_STRINGCLR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
151
      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
152
      <PrecompiledHeader />
153
      <WarningLevel>Level3</WarningLevel>
154
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
155
    </ClCompile>
156
    <Link>
157
      <AdditionalDependencies>$(SolutionDir)$(Configuration)/spk.lib</AdditionalDependencies>
158
      <GenerateDebugInformation>true</GenerateDebugInformation>
159
      <AssemblyDebug>true</AssemblyDebug>
160
      <SubSystem>Windows</SubSystem>
161
      <EntryPointSymbol>main</EntryPointSymbol>
162
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
163
      <DataExecutionPrevention />
164
      <TargetMachine>MachineX64</TargetMachine>
165
    </Link>
166
  </ItemDefinitionGroup>
167
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
168
    <Midl>
169
      <TargetEnvironment>X64</TargetEnvironment>
170
    </Midl>
171
    <ClCompile>
172
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
173
      <PreprocessorDefinitions>WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_SPKDLL;_STRINGCLR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
174
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
175
      <PrecompiledHeader />
176
      <WarningLevel>Level3</WarningLevel>
177
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
178
    </ClCompile>
179
    <Link>
180
      <AdditionalDependencies>$(SolutionDir)$(Configuration)\spk.lib</AdditionalDependencies>
181
      <GenerateDebugInformation>false</GenerateDebugInformation>
182
      <SubSystem>Windows</SubSystem>
183
      <EntryPointSymbol>main</EntryPointSymbol>
184
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
185
      <DataExecutionPrevention />
186
      <TargetMachine>MachineX64</TargetMachine>
187
    </Link>
188
  </ItemDefinitionGroup>
189
  <ItemGroup>
190
    <Reference Include="System">
191
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
192
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
193
    </Reference>
194
    <Reference Include="System.Data">
195
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
196
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
197
    </Reference>
198
    <Reference Include="System.Drawing">
199
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
200
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
201
    </Reference>
202
    <Reference Include="System.Windows.Forms">
203
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
204
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
205
    </Reference>
206
    <Reference Include="System.Xml">
207
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
208
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
209
    </Reference>
210
  </ItemGroup>
211
  <ItemGroup>
212
    <ProjectReference Include="..\libspk\Windows\spk.vcxproj">
213
      <Project>{c18ec70d-7048-485c-8bb3-e219c6c8e352}</Project>
214
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
215
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
216
    </ProjectReference>
217
  </ItemGroup>
218
  <ItemGroup>
219
    <ClCompile Include="..\SpkExplorer\src\Forms\AddDialog.cpp" />
220
    <ClCompile Include="..\SpkExplorer\src\Forms\ExtractDialog.cpp" />
221
    <ClCompile Include="..\SpkExplorer\src\Forms\SpkForm.cpp" />
222
    <ClCompile Include="src\AssemblyInfo.cpp" />
223
    <ClCompile Include="src\Creator.cpp" />
224
    <ClCompile Include="src\Forms\AddDepend.cpp" />
237 cycrow 225
    <ClCompile Include="src\Forms\AddGlobal.cpp" />
121 cycrow 226
    <ClCompile Include="src\Forms\AddShipPart.cpp" />
227
    <ClCompile Include="src\Forms\BaseForm.cpp" />
228
    <ClCompile Include="src\Forms\CreationWizard.cpp" />
229
    <ClCompile Include="src\Forms\CustomiseGuns.cpp" />
230
    <ClCompile Include="src\Forms\CustomiseInfo.cpp" />
231
    <ClCompile Include="src\Forms\CustomisePerformance.cpp" />
232
    <ClCompile Include="src\Forms\CustomiseShip.cpp" />
233
    <ClCompile Include="src\Forms\CustomiseTurret.cpp" />
234
    <ClCompile Include="src\Forms\CustomiseWeapons.cpp" />
235
    <ClCompile Include="src\Forms\CustomiseWeapons1.cpp" />
236
    <ClCompile Include="src\Forms\FileExplorer.cpp" />
237
    <ClCompile Include="src\Forms\Form1.cpp" />
238
    <ClCompile Include="src\Forms\ImportShip.cpp" />
239
    <ClCompile Include="src\Forms\InputBox.cpp" />
240
    <ClCompile Include="src\Forms\LoadShip.cpp" />
241
    <ClCompile Include="src\Forms\ModDiff.cpp" />
242
    <ClCompile Include="src\Forms\MultiForm.cpp" />
243
    <ClCompile Include="src\Forms\PackageForm.cpp" />
244
    <ClCompile Include="src\Forms\SelectFilesystem.cpp" />
245
    <ClCompile Include="src\Forms\Waiting.cpp" />
246
    <ClCompile Include="src\Forms\WizardAdvanced.cpp" />
247
    <ClCompile Include="src\Forms\WizardBasic1.cpp" />
248
    <ClCompile Include="src\Forms\WizardCore1.cpp" />
249
    <ClCompile Include="src\Forms\WizardRebalance.cpp" />
250
    <ClCompile Include="src\Forms\WizardStartup.cpp" />
251
    <ClCompile Include="src\Forms\WizardUpdate.cpp" />
252
    <ClCompile Include="src\stdafx.cpp" />
253
  </ItemGroup>
254
  <ItemGroup>
255
    <ClInclude Include="..\common\spknet.h" />
256
    <ClInclude Include="..\SpkExplorer\src\Forms\AddDialog.h">
257
      <FileType>CppForm</FileType>
258
    </ClInclude>
259
    <ClInclude Include="..\SpkExplorer\src\Forms\ExtractDialog.h">
260
      <FileType>CppForm</FileType>
261
    </ClInclude>
262
    <ClInclude Include="..\SpkExplorer\src\Forms\SpkForm.h">
263
      <FileType>CppForm</FileType>
264
    </ClInclude>
265
    <ClInclude Include="src\Forms\AddCockpit.h">
266
      <FileType>CppForm</FileType>
267
    </ClInclude>
268
    <ClInclude Include="src\Forms\AddDepend.h">
269
      <FileType>CppForm</FileType>
270
    </ClInclude>
237 cycrow 271
    <ClInclude Include="src\Forms\AddGlobal.h">
272
      <FileType>CppForm</FileType>
273
    </ClInclude>
121 cycrow 274
    <ClInclude Include="src\Forms\AddShipPart.h">
275
      <FileType>CppForm</FileType>
276
    </ClInclude>
277
    <ClInclude Include="src\Forms\AddShipText.h">
278
      <FileType>CppForm</FileType>
279
    </ClInclude>
280
    <ClInclude Include="src\Forms\AddWare.h">
281
      <FileType>CppForm</FileType>
282
    </ClInclude>
283
    <ClInclude Include="src\Forms\AddWareText.h">
284
      <FileType>CppForm</FileType>
285
    </ClInclude>
286
    <ClInclude Include="src\Forms\BaseForm.h">
287
      <FileType>CppForm</FileType>
288
    </ClInclude>
289
    <ClInclude Include="src\Forms\CreationWizard.h">
290
      <FileType>CppForm</FileType>
291
    </ClInclude>
292
    <ClInclude Include="src\Forms\CustomiseGuns.h">
293
      <FileType>CppForm</FileType>
294
    </ClInclude>
295
    <ClInclude Include="src\Forms\CustomiseInfo.h">
296
      <FileType>CppForm</FileType>
297
    </ClInclude>
298
    <ClInclude Include="src\Forms\CustomiseModel.h">
299
      <FileType>CppForm</FileType>
300
    </ClInclude>
301
    <ClInclude Include="src\Forms\CustomisePerformance.h">
302
      <FileType>CppForm</FileType>
303
    </ClInclude>
304
    <ClInclude Include="src\Forms\CustomiseShip.h">
305
      <FileType>CppForm</FileType>
306
    </ClInclude>
307
    <ClInclude Include="src\Forms\CustomiseTurret.h">
308
      <FileType>CppForm</FileType>
309
    </ClInclude>
310
    <ClInclude Include="src\Forms\CustomiseWeapons.h">
311
      <FileType>CppForm</FileType>
312
    </ClInclude>
313
    <ClInclude Include="src\Forms\CustomiseWeapons1.h">
314
      <FileType>CppForm</FileType>
315
    </ClInclude>
316
    <ClInclude Include="src\Forms\FileExplorer.h">
317
      <FileType>CppForm</FileType>
318
    </ClInclude>
319
    <ClInclude Include="src\Forms\Form1.h">
320
      <FileType>CppForm</FileType>
321
    </ClInclude>
322
    <ClInclude Include="src\Forms\ImportShip.h">
323
      <FileType>CppForm</FileType>
324
    </ClInclude>
325
    <ClInclude Include="src\Forms\InputBox.h">
326
      <FileType>CppForm</FileType>
327
    </ClInclude>
328
    <ClInclude Include="src\Forms\LoadShip.h">
329
      <FileType>CppForm</FileType>
330
    </ClInclude>
331
    <ClInclude Include="src\Forms\LoadText.h">
332
      <FileType>CppForm</FileType>
333
    </ClInclude>
334
    <ClInclude Include="src\Forms\ModDiff.h">
335
      <FileType>CppForm</FileType>
336
    </ClInclude>
337
    <ClInclude Include="src\Forms\MultiForm.h">
338
      <FileType>CppForm</FileType>
339
    </ClInclude>
340
    <ClInclude Include="src\Forms\Options.h">
341
      <FileType>CppForm</FileType>
342
    </ClInclude>
343
    <ClInclude Include="src\Forms\PackageForm.h">
344
      <FileType>CppForm</FileType>
345
    </ClInclude>
346
    <ClInclude Include="src\Forms\SaveDialog.h">
347
      <FileType>CppForm</FileType>
348
    </ClInclude>
349
    <ClInclude Include="src\Forms\SelectFilesystem.h">
350
      <FileType>CppForm</FileType>
351
    </ClInclude>
352
    <ClInclude Include="src\Forms\SelectGame.h">
353
      <FileType>CppForm</FileType>
354
    </ClInclude>
355
    <ClInclude Include="src\Forms\Waiting.h">
356
      <FileType>CppForm</FileType>
357
    </ClInclude>
358
    <ClInclude Include="src\Forms\WizardAdvanced.h">
359
      <FileType>CppControl</FileType>
360
    </ClInclude>
361
    <ClInclude Include="src\Forms\WizardBasic1.h">
362
      <FileType>CppForm</FileType>
363
    </ClInclude>
364
    <ClInclude Include="src\Forms\WizardCore1.h">
365
      <FileType>CppControl</FileType>
366
    </ClInclude>
367
    <ClInclude Include="src\Forms\WizardRebalance.h">
368
      <FileType>CppForm</FileType>
369
    </ClInclude>
370
    <ClInclude Include="src\Forms\WizardStartup.h">
371
      <FileType>CppForm</FileType>
372
    </ClInclude>
373
    <ClInclude Include="src\Forms\WizardUpdate.h">
374
      <FileType>CppForm</FileType>
375
    </ClInclude>
376
    <ClInclude Include="src\resource.h" />
377
    <ClInclude Include="src\stdafx.h" />
378
  </ItemGroup>
379
  <ItemGroup>
380
    <ResourceCompile Include="app.rc" />
381
  </ItemGroup>
382
  <ItemGroup>
383
    <Image Include="X-PlugInManager-Creator.bmp" />
384
    <Image Include="X-PlugInManager-Creator.ico" />
385
  </ItemGroup>
386
  <ItemGroup>
387
    <EmbeddedResource Include="..\SpkExplorer\src\Forms\AddDialog.resx">
388
      <DependentUpon>..\SpkExplorer\src\Forms\AddDialog.h</DependentUpon>
389
      <SubType>Designer</SubType>
390
    </EmbeddedResource>
391
    <EmbeddedResource Include="..\SpkExplorer\src\Forms\ExtractDialog.resx">
392
      <DependentUpon>..\SpkExplorer\src\Forms\ExtractDialog.h</DependentUpon>
393
      <SubType>Designer</SubType>
394
    </EmbeddedResource>
395
    <EmbeddedResource Include="..\SpkExplorer\src\Forms\SpkForm.resx">
396
      <DependentUpon>..\SpkExplorer\src\Forms\SpkForm.h</DependentUpon>
397
      <SubType>Designer</SubType>
398
    </EmbeddedResource>
399
    <EmbeddedResource Include="src\Forms\AddCockpit.resx">
400
      <DependentUpon>src\Forms\AddCockpit.h</DependentUpon>
401
      <SubType>Designer</SubType>
402
    </EmbeddedResource>
403
    <EmbeddedResource Include="src\Forms\AddDepend.resx">
404
      <DependentUpon>src\Forms\AddDepend.h</DependentUpon>
405
      <SubType>Designer</SubType>
406
    </EmbeddedResource>
237 cycrow 407
    <EmbeddedResource Include="src\Forms\AddGlobal.resx">
408
      <DependentUpon>src\Forms\AddGlobal.h</DependentUpon>
409
      <SubType>Designer</SubType>
410
    </EmbeddedResource>
121 cycrow 411
    <EmbeddedResource Include="src\Forms\AddShipPart.resx">
412
      <DependentUpon>src\Forms\AddShipPart.h</DependentUpon>
413
      <SubType>Designer</SubType>
414
    </EmbeddedResource>
415
    <EmbeddedResource Include="src\Forms\AddShipText.resx">
416
      <DependentUpon>src\Forms\AddShipText.h</DependentUpon>
417
      <SubType>Designer</SubType>
418
    </EmbeddedResource>
419
    <EmbeddedResource Include="src\Forms\AddWare.resx">
420
      <DependentUpon>src\Forms\AddWare.h</DependentUpon>
421
      <SubType>Designer</SubType>
422
    </EmbeddedResource>
423
    <EmbeddedResource Include="src\Forms\AddWareText.resx">
424
      <DependentUpon>src\Forms\AddWareText.h</DependentUpon>
425
      <SubType>Designer</SubType>
426
    </EmbeddedResource>
427
    <EmbeddedResource Include="src\Forms\BaseForm.resx">
428
      <DependentUpon>src\Forms\BaseForm.h</DependentUpon>
429
      <SubType>Designer</SubType>
430
    </EmbeddedResource>
431
    <EmbeddedResource Include="src\Forms\CreationWizard.resx">
432
      <DependentUpon>src\Forms\CreationWizard.h</DependentUpon>
433
      <SubType>Designer</SubType>
434
    </EmbeddedResource>
435
    <EmbeddedResource Include="src\Forms\CustomiseGuns.resx">
436
      <DependentUpon>src\Forms\CustomiseGuns.h</DependentUpon>
437
      <SubType>Designer</SubType>
438
    </EmbeddedResource>
439
    <EmbeddedResource Include="src\Forms\CustomiseInfo.resx">
440
      <DependentUpon>src\Forms\CustomiseInfo.h</DependentUpon>
441
      <SubType>Designer</SubType>
442
    </EmbeddedResource>
443
    <EmbeddedResource Include="src\Forms\CustomiseModel.resx">
444
      <DependentUpon>src\Forms\CustomiseModel.h</DependentUpon>
445
      <SubType>Designer</SubType>
446
    </EmbeddedResource>
447
    <EmbeddedResource Include="src\Forms\CustomisePerformance.resx">
448
      <DependentUpon>src\Forms\CustomisePerformance.h</DependentUpon>
449
      <SubType>Designer</SubType>
450
    </EmbeddedResource>
451
    <EmbeddedResource Include="src\Forms\CustomiseShip.resx">
452
      <DependentUpon>src\Forms\CustomiseShip.h</DependentUpon>
453
      <SubType>Designer</SubType>
454
    </EmbeddedResource>
455
    <EmbeddedResource Include="src\Forms\CustomiseTurret.resx">
456
      <DependentUpon>src\Forms\CustomiseTurret.h</DependentUpon>
457
      <SubType>Designer</SubType>
458
    </EmbeddedResource>
459
    <EmbeddedResource Include="src\Forms\CustomiseWeapons.resx">
460
      <DependentUpon>src\Forms\CustomiseWeapons.h</DependentUpon>
461
      <SubType>Designer</SubType>
462
    </EmbeddedResource>
463
    <EmbeddedResource Include="src\Forms\CustomiseWeapons1.resx">
464
      <DependentUpon>src\Forms\CustomiseWeapons1.h</DependentUpon>
465
      <SubType>Designer</SubType>
466
    </EmbeddedResource>
467
    <EmbeddedResource Include="src\Forms\FileExplorer.resx">
468
      <DependentUpon>src\Forms\FileExplorer.h</DependentUpon>
469
      <SubType>Designer</SubType>
470
    </EmbeddedResource>
471
    <EmbeddedResource Include="src\Forms\Form1.resx">
472
      <DependentUpon>src\Forms\Form1.h</DependentUpon>
473
      <SubType>Designer</SubType>
474
      <LogicalName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(RootNamespace).%(Filename).resources</LogicalName>
475
    </EmbeddedResource>
476
    <EmbeddedResource Include="src\Forms\ImportShip.resx">
477
      <DependentUpon>src\Forms\ImportShip.h</DependentUpon>
478
      <SubType>Designer</SubType>
479
    </EmbeddedResource>
480
    <EmbeddedResource Include="src\Forms\InputBox.resx">
481
      <DependentUpon>src\Forms\InputBox.h</DependentUpon>
482
      <SubType>Designer</SubType>
483
    </EmbeddedResource>
484
    <EmbeddedResource Include="src\Forms\LoadShip.resx">
485
      <DependentUpon>src\Forms\LoadShip.h</DependentUpon>
486
      <SubType>Designer</SubType>
487
    </EmbeddedResource>
488
    <EmbeddedResource Include="src\Forms\LoadText.resx">
489
      <DependentUpon>src\Forms\LoadText.h</DependentUpon>
490
      <SubType>Designer</SubType>
491
    </EmbeddedResource>
492
    <EmbeddedResource Include="src\Forms\ModDiff.resx">
493
      <DependentUpon>src\Forms\ModDiff.h</DependentUpon>
494
      <SubType>Designer</SubType>
495
    </EmbeddedResource>
496
    <EmbeddedResource Include="src\Forms\MultiForm.resx">
497
      <DependentUpon>src\Forms\MultiForm.h</DependentUpon>
498
      <SubType>Designer</SubType>
499
    </EmbeddedResource>
500
    <EmbeddedResource Include="src\Forms\Options.resx">
501
      <DependentUpon>src\Forms\Options.h</DependentUpon>
502
      <SubType>Designer</SubType>
503
    </EmbeddedResource>
504
    <EmbeddedResource Include="src\Forms\PackageForm.resx">
505
      <DependentUpon>src\Forms\PackageForm.h</DependentUpon>
506
      <SubType>Designer</SubType>
507
    </EmbeddedResource>
508
    <EmbeddedResource Include="src\Forms\SaveDialog.resx">
509
      <DependentUpon>src\Forms\SaveDialog.h</DependentUpon>
510
      <SubType>Designer</SubType>
511
    </EmbeddedResource>
512
    <EmbeddedResource Include="src\Forms\SelectFilesystem.resx">
513
      <DependentUpon>src\Forms\SelectFilesystem.h</DependentUpon>
514
      <SubType>Designer</SubType>
515
    </EmbeddedResource>
516
    <EmbeddedResource Include="src\Forms\SelectGame.resx">
517
      <DependentUpon>src\Forms\SelectGame.h</DependentUpon>
518
      <SubType>Designer</SubType>
519
    </EmbeddedResource>
520
    <EmbeddedResource Include="src\Forms\Waiting.resx">
521
      <DependentUpon>src\Forms\Waiting.h</DependentUpon>
522
      <SubType>Designer</SubType>
523
    </EmbeddedResource>
524
    <EmbeddedResource Include="src\Forms\WizardBasic1.resx">
525
      <DependentUpon>src\Forms\WizardBasic1.h</DependentUpon>
526
      <SubType>Designer</SubType>
527
    </EmbeddedResource>
528
    <EmbeddedResource Include="src\Forms\WizardStartup.resx">
529
      <DependentUpon>src\Forms\WizardStartup.h</DependentUpon>
530
      <SubType>Designer</SubType>
531
    </EmbeddedResource>
532
    <EmbeddedResource Include="src\Forms\WizardUpdate.resx">
533
      <DependentUpon>src\Forms\WizardUpdate.h</DependentUpon>
534
      <SubType>Designer</SubType>
535
    </EmbeddedResource>
536
  </ItemGroup>
537
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
538
  <ImportGroup Label="ExtensionTargets">
539
  </ImportGroup>
540
</Project>