ToolsMPQ.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{7214F82D-8FFE-4AA1-8EC2-6095E478D1E2}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ToolsMPQ</RootNamespace>
  11. <AssemblyName>ToolsMPQ</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Xml.Linq" />
  38. <Reference Include="System.Data.DataSetExtensions" />
  39. <Reference Include="Microsoft.CSharp" />
  40. <Reference Include="System.Data" />
  41. <Reference Include="System.Deployment" />
  42. <Reference Include="System.Drawing" />
  43. <Reference Include="System.Windows.Forms" />
  44. <Reference Include="System.Xml" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="FormArchive.cs">
  48. <SubType>Form</SubType>
  49. </Compile>
  50. <Compile Include="FormArchive.Designer.cs">
  51. <DependentUpon>FormArchive.cs</DependentUpon>
  52. </Compile>
  53. <Compile Include="FormMain.cs">
  54. <SubType>Form</SubType>
  55. </Compile>
  56. <Compile Include="FormMain.Designer.cs">
  57. <DependentUpon>FormMain.cs</DependentUpon>
  58. </Compile>
  59. <Compile Include="FormUnarchive.cs">
  60. <SubType>Form</SubType>
  61. </Compile>
  62. <Compile Include="Form1.Designer.cs">
  63. <DependentUpon>FormUnarchive.cs</DependentUpon>
  64. </Compile>
  65. <Compile Include="Program.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <EmbeddedResource Include="FormMain.resx">
  68. <DependentUpon>FormMain.cs</DependentUpon>
  69. </EmbeddedResource>
  70. <EmbeddedResource Include="FormUnarchive.resx">
  71. <DependentUpon>FormUnarchive.cs</DependentUpon>
  72. </EmbeddedResource>
  73. <EmbeddedResource Include="Properties\Resources.resx">
  74. <Generator>ResXFileCodeGenerator</Generator>
  75. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  76. <SubType>Designer</SubType>
  77. </EmbeddedResource>
  78. <Compile Include="Properties\Resources.Designer.cs">
  79. <AutoGen>True</AutoGen>
  80. <DependentUpon>Resources.resx</DependentUpon>
  81. </Compile>
  82. <None Include="install.bat">
  83. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  84. </None>
  85. <None Include="Properties\Settings.settings">
  86. <Generator>SettingsSingleFileGenerator</Generator>
  87. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  88. </None>
  89. <Compile Include="Properties\Settings.Designer.cs">
  90. <AutoGen>True</AutoGen>
  91. <DependentUpon>Settings.settings</DependentUpon>
  92. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  93. </Compile>
  94. <None Include="uninstall.bat">
  95. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  96. </None>
  97. </ItemGroup>
  98. <ItemGroup>
  99. <ProjectReference Include="..\CommonFileSystem\CommonMPQ.csproj">
  100. <Project>{e6f4820c-30d4-4ddf-8890-517c9efd92a8}</Project>
  101. <Name>CommonMPQ</Name>
  102. </ProjectReference>
  103. <ProjectReference Include="..\CommonLang\CommonLang.csproj">
  104. <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
  105. <Name>CommonLang</Name>
  106. </ProjectReference>
  107. </ItemGroup>
  108. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  109. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  110. Other similar extension points exist, see Microsoft.Common.targets.
  111. <Target Name="BeforeBuild">
  112. </Target>
  113. <Target Name="AfterBuild">
  114. </Target>
  115. -->
  116. </Project>