Eq2VpkTool.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugSymbols>false</DebugSymbols>
  31. <Optimize>true</Optimize>
  32. <OutputPath>.\bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Data" />
  38. <Reference Include="System.Drawing" />
  39. <Reference Include="System.Windows.Forms" />
  40. <Reference Include="System.Xml" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="Properties\Resources.Designer.cs">
  44. <AutoGen>True</AutoGen>
  45. <DesignTime>True</DesignTime>
  46. <DependentUpon>Resources.resx</DependentUpon>
  47. </Compile>
  48. <Compile Include="Properties\Settings.Designer.cs">
  49. <AutoGen>True</AutoGen>
  50. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  51. <DependentUpon>Settings.settings</DependentUpon>
  52. </Compile>
  53. <Compile Include="Source\Configuration.cs" />
  54. <Compile Include="Source\DirectoryContentsComparer.cs" />
  55. <Compile Include="Source\ExtractionManager.cs" />
  56. <Compile Include="Source\FileSystemViewController.cs" />
  57. <Compile Include="Source\IconManager.cs" />
  58. <Compile Include="Source\TextureDecryptor.cs" />
  59. <Compile Include="Source\UI\MainWindow.cs">
  60. <SubType>Form</SubType>
  61. </Compile>
  62. <Compile Include="Source\UI\MainWindow.Designer.cs">
  63. <DependentUpon>MainWindow.cs</DependentUpon>
  64. </Compile>
  65. <Compile Include="Source\Program.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <EmbeddedResource Include="Source\UI\MainWindow.resx">
  68. <DependentUpon>MainWindow.cs</DependentUpon>
  69. </EmbeddedResource>
  70. <EmbeddedResource Include="Properties\Resources.resx">
  71. <Generator>ResXFileCodeGenerator</Generator>
  72. <SubType>Designer</SubType>
  73. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  74. </EmbeddedResource>
  75. <None Include="Properties\Settings.settings">
  76. <Generator>SettingsSingleFileGenerator</Generator>
  77. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  78. </None>
  79. <AppDesigner Include="Properties\" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <ProjectReference Include="..\libeq2\libeq2.csproj">
  83. <Project>{C81BFE28-59EA-421A-85BA-2E7F0A027595}</Project>
  84. <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
  85. <Name>libeq2</Name>
  86. </ProjectReference>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="Configuration.xml">
  90. <CopyToOutputDirectory>True</CopyToOutputDirectory>
  91. </None>
  92. <Content Include="eq2.ico" />
  93. <Content Include="License.txt" />
  94. <Content Include="Readme.txt" />
  95. </ItemGroup>
  96. <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
  97. </Project>