SevenZip2010.csproj 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{4960DD14-3431-47EC-B9D9-9D2730A98DC3}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>SevenZip</RootNamespace>
  12. <AssemblyName>SevenZipSharp</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SignAssembly>false</SignAssembly>
  16. <AssemblyOriginatorKeyFile>
  17. </AssemblyOriginatorKeyFile>
  18. <FileUpgradeFlags>
  19. </FileUpgradeFlags>
  20. <UpgradeBackupLocation>
  21. </UpgradeBackupLocation>
  22. <OldToolsVersion>3.5</OldToolsVersion>
  23. <TargetFrameworkProfile />
  24. <PublishUrl>publish\</PublishUrl>
  25. <Install>true</Install>
  26. <InstallFrom>Disk</InstallFrom>
  27. <UpdateEnabled>false</UpdateEnabled>
  28. <UpdateMode>Foreground</UpdateMode>
  29. <UpdateInterval>7</UpdateInterval>
  30. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  31. <UpdatePeriodically>false</UpdatePeriodically>
  32. <UpdateRequired>false</UpdateRequired>
  33. <MapFileExtensions>true</MapFileExtensions>
  34. <ApplicationRevision>0</ApplicationRevision>
  35. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  36. <IsWebBootstrapper>false</IsWebBootstrapper>
  37. <UseApplicationTrust>false</UseApplicationTrust>
  38. <BootstrapperEnabled>true</BootstrapperEnabled>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  41. <DebugSymbols>true</DebugSymbols>
  42. <DebugType>full</DebugType>
  43. <Optimize>false</Optimize>
  44. <OutputPath>bin\Debug\</OutputPath>
  45. <DefineConstants>TRACE;DEBUG;UNMANAGED, COMPRESS, LZMA_STREAM, CS4,SFX</DefineConstants>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. <RegisterForComInterop>false</RegisterForComInterop>
  49. <DocumentationFile>bin\Debug\SevenZipSharp.xml</DocumentationFile>
  50. </PropertyGroup>
  51. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  52. <DebugType>pdbonly</DebugType>
  53. <Optimize>true</Optimize>
  54. <OutputPath>bin\Release\</OutputPath>
  55. <DefineConstants>TRACE;UNMANAGED, COMPRESS, LZMA_STREAM, CS4,SFX</DefineConstants>
  56. <ErrorReport>prompt</ErrorReport>
  57. <WarningLevel>4</WarningLevel>
  58. <RegisterForComInterop>false</RegisterForComInterop>
  59. <DocumentationFile>bin\Release\SevenZipSharp.xml</DocumentationFile>
  60. </PropertyGroup>
  61. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Deploy|AnyCPU' ">
  62. <OutputPath>bin\Deploy\</OutputPath>
  63. <DefineConstants>TRACE;UNMANAGED, COMPRESS, LZMA_STREAM</DefineConstants>
  64. <DocumentationFile>bin\Release\SevenZip.XML</DocumentationFile>
  65. <Optimize>true</Optimize>
  66. <RegisterForComInterop>false</RegisterForComInterop>
  67. <DebugType>pdbonly</DebugType>
  68. <PlatformTarget>AnyCPU</PlatformTarget>
  69. <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
  70. <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
  71. <ErrorReport>prompt</ErrorReport>
  72. </PropertyGroup>
  73. <ItemGroup>
  74. <Reference Include="System" />
  75. <Reference Include="System.configuration" />
  76. <Reference Include="System.Data" />
  77. <Reference Include="System.Xml" />
  78. <Reference Include="WindowsBase" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Compile Include="ArchiveEmulationStreamProxy.cs" />
  82. <Compile Include="ArchiveExtractCallback.cs" />
  83. <Compile Include="ArchiveOpenCallback.cs" />
  84. <Compile Include="ArchiveUpdateCallback.cs" />
  85. <Compile Include="Com.cs" />
  86. <Compile Include="EventArgs.cs" />
  87. <Compile Include="Exceptions.cs" />
  88. <Compile Include="FileSignatureChecker.cs" />
  89. <Compile Include="Formats.cs" />
  90. <Compile Include="LibraryFeature.cs" />
  91. <Compile Include="LibraryManager.cs" />
  92. <Compile Include="Common.cs" />
  93. <Compile Include="LzmaDecodeStream.cs" />
  94. <Compile Include="LzmaEncodeStream.cs" />
  95. <Compile Include="LzmaProgressCallback.cs" />
  96. <Compile Include="NativeMethods.cs" />
  97. <Compile Include="Properties\AssemblyInfo.cs" />
  98. <Compile Include="sdk\Common\CRC.cs" />
  99. <Compile Include="sdk\Common\InBuffer.cs" />
  100. <Compile Include="sdk\Common\OutBuffer.cs" />
  101. <Compile Include="sdk\Compress\LZMA\LzmaBase.cs" />
  102. <Compile Include="sdk\Compress\LZMA\LzmaDecoder.cs" />
  103. <Compile Include="sdk\Compress\LZMA\LzmaEncoder.cs" />
  104. <Compile Include="sdk\Compress\LZ\IMatchFinder.cs" />
  105. <Compile Include="sdk\Compress\LZ\LzBinTree.cs" />
  106. <Compile Include="sdk\Compress\LZ\LzInWindow.cs" />
  107. <Compile Include="sdk\Compress\LZ\LzOutWindow.cs" />
  108. <Compile Include="sdk\Compress\RangeCoder\RangeCoder.cs" />
  109. <Compile Include="sdk\Compress\RangeCoder\RangeCoderBit.cs" />
  110. <Compile Include="sdk\Compress\RangeCoder\RangeCoderBitTree.cs" />
  111. <Compile Include="sdk\ICoder.cs" />
  112. <Compile Include="SevenZipCompressor.cs" />
  113. <Compile Include="SevenZipCompressorAsynchronous.cs" />
  114. <Compile Include="SevenZipExtractor.cs" />
  115. <Compile Include="SevenZipExtractorAsynchronous.cs" />
  116. <Compile Include="SevenZipSfx.cs" />
  117. <Compile Include="StreamWrappers.cs" />
  118. </ItemGroup>
  119. <ItemGroup>
  120. <None Include="sfx\7zS.sfx" />
  121. <None Include="sfx\7zxSD_All.sfx" />
  122. <None Include="sfx\7zxSD_PPMd_x64.sfx" />
  123. </ItemGroup>
  124. <ItemGroup>
  125. <EmbeddedResource Include="sfx\Configs.xml" />
  126. </ItemGroup>
  127. <ItemGroup>
  128. <Content Include="7z.dll">
  129. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  130. </Content>
  131. <Content Include="7z64.dll" />
  132. <Content Include="arch\Test.txt" />
  133. <Content Include="sfx\Configs.xslt" />
  134. </ItemGroup>
  135. <ItemGroup>
  136. <None Include="sfx\7zSD.sfx" />
  137. <None Include="sfx\7zxSD_All_x64.sfx" />
  138. <None Include="sfx\7zxSD_Deflate.sfx" />
  139. <None Include="sfx\7zxSD_Deflate_x64.sfx" />
  140. <None Include="sfx\7zxSD_LZMA.sfx" />
  141. <None Include="sfx\7zxSD_LZMA2.sfx" />
  142. <None Include="sfx\7zxSD_LZMA2_x64.sfx" />
  143. <None Include="sfx\7zxSD_LZMA_x64.sfx" />
  144. <None Include="sfx\7zxSD_PPMd.sfx" />
  145. <EmbeddedResource Include="sfx\Configs.xsd" />
  146. </ItemGroup>
  147. <ItemGroup>
  148. <EmbeddedResource Include="arch\Test.bzip2.7z" />
  149. <EmbeddedResource Include="arch\Test.lzma.7z" />
  150. <EmbeddedResource Include="arch\Test.lzma2.7z" />
  151. <EmbeddedResource Include="arch\Test.ppmd.7z" />
  152. <EmbeddedResource Include="arch\Test.rar" />
  153. <EmbeddedResource Include="arch\Test.tar" />
  154. <EmbeddedResource Include="arch\Test.txt.bz2" />
  155. <EmbeddedResource Include="arch\Test.txt.gz" />
  156. <EmbeddedResource Include="arch\Test.txt.xz" />
  157. <EmbeddedResource Include="arch\Test.zip" />
  158. <None Include="sfx\7z.sfx" />
  159. <None Include="sfx\7zCon.sfx" />
  160. </ItemGroup>
  161. <ItemGroup>
  162. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  163. <Visible>False</Visible>
  164. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  165. <Install>false</Install>
  166. </BootstrapperPackage>
  167. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  168. <Visible>False</Visible>
  169. <ProductName>.NET Framework 3.5 SP1</ProductName>
  170. <Install>true</Install>
  171. </BootstrapperPackage>
  172. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  173. <Visible>False</Visible>
  174. <ProductName>Windows Installer 3.1</ProductName>
  175. <Install>true</Install>
  176. </BootstrapperPackage>
  177. </ItemGroup>
  178. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  179. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  180. Other similar extension points exist, see Microsoft.Common.targets.
  181. <Target Name="BeforeBuild">
  182. </Target>
  183. <Target Name="AfterBuild">
  184. </Target>
  185. -->
  186. <PropertyGroup>
  187. <PostBuildEvent>
  188. </PostBuildEvent>
  189. </PropertyGroup>
  190. </Project>