Eq2VpkTool.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.50727</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{2F133C14-27F5-4593-BBCC-F12670A59E03}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>Eq2VpkTool</RootNamespace>
  11. <AssemblyName>Eq2VpkTool</AssemblyName>
  12. <WarningLevel>4</WarningLevel>
  13. <ApplicationIcon>eq2.ico</ApplicationIcon>
  14. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  15. <FileUpgradeFlags>
  16. </FileUpgradeFlags>
  17. <UpgradeBackupLocation>
  18. </UpgradeBackupLocation>
  19. <OldToolsVersion>2.0</OldToolsVersion>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>.\bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <PlatformTarget>x64</PlatformTarget>
  28. <UseVSHostingProcess>true</UseVSHostingProcess>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugSymbols>false</DebugSymbols>
  32. <Optimize>true</Optimize>
  33. <OutputPath>.\bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Data" />
  39. <Reference Include="System.Drawing" />
  40. <Reference Include="System.Windows.Forms" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="Properties\Resources.Designer.cs">
  45. <AutoGen>True</AutoGen>
  46. <DesignTime>True</DesignTime>
  47. <DependentUpon>Resources.resx</DependentUpon>
  48. </Compile>
  49. <Compile Include="Properties\Settings.Designer.cs">
  50. <AutoGen>True</AutoGen>
  51. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  52. <DependentUpon>Settings.settings</DependentUpon>
  53. </Compile>
  54. <Compile Include="Source\Configuration.cs" />
  55. <Compile Include="Source\DirectoryContentsComparer.cs" />
  56. <Compile Include="Source\ExtractionManager.cs" />
  57. <Compile Include="Source\FileSystemViewController.cs" />
  58. <Compile Include="Source\IconManager.cs" />
  59. <Compile Include="Source\TextureDecryptor.cs" />
  60. <Compile Include="Source\UI\MainWindow.cs">
  61. <SubType>Form</SubType>
  62. </Compile>
  63. <Compile Include="Source\UI\MainWindow.Designer.cs">
  64. <DependentUpon>MainWindow.cs</DependentUpon>
  65. </Compile>
  66. <Compile Include="Source\Program.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. <EmbeddedResource Include="Source\UI\MainWindow.resx">
  69. <DependentUpon>MainWindow.cs</DependentUpon>
  70. </EmbeddedResource>
  71. <EmbeddedResource Include="Properties\Resources.resx">
  72. <Generator>ResXFileCodeGenerator</Generator>
  73. <SubType>Designer</SubType>
  74. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  75. </EmbeddedResource>
  76. <None Include="Properties\Settings.settings">
  77. <Generator>SettingsSingleFileGenerator</Generator>
  78. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  79. </None>
  80. <AppDesigner Include="Properties\" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <ProjectReference Include="..\libeq2\libeq2.csproj">
  84. <Project>{C81BFE28-59EA-421A-85BA-2E7F0A027595}</Project>
  85. <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
  86. <Name>libeq2</Name>
  87. </ProjectReference>
  88. </ItemGroup>
  89. <ItemGroup>
  90. <None Include="Configuration.xml">
  91. <CopyToOutputDirectory>True</CopyToOutputDirectory>
  92. </None>
  93. <Content Include="eq2.ico" />
  94. <Content Include="License.txt" />
  95. <Content Include="Readme.txt" />
  96. </ItemGroup>
  97. <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
  98. </Project>