tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

LzmaAlone.csproj (3426B)


      1 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      2   <PropertyGroup>
      3     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
      4     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
      5     <ProductVersion>8.0.50727</ProductVersion>
      6     <SchemaVersion>2.0</SchemaVersion>
      7     <ProjectGuid>{CE33DF18-F9C8-4D6F-9057-DBB4DB96E973}</ProjectGuid>
      8     <OutputType>Exe</OutputType>
      9     <RootNamespace>LzmaAlone</RootNamespace>
     10     <AssemblyName>Lzma#</AssemblyName>
     11     <WarningLevel>4</WarningLevel>
     12   </PropertyGroup>
     13   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     14     <DebugSymbols>true</DebugSymbols>
     15     <DebugType>full</DebugType>
     16     <Optimize>false</Optimize>
     17     <OutputPath>.\bin\Debug\</OutputPath>
     18     <DefineConstants>DEBUG;TRACE</DefineConstants>
     19   </PropertyGroup>
     20   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
     21     <DebugSymbols>false</DebugSymbols>
     22     <Optimize>true</Optimize>
     23     <OutputPath>.\bin\Release\</OutputPath>
     24     <DefineConstants>TRACE</DefineConstants>
     25     <PlatformTarget>AnyCPU</PlatformTarget>
     26   </PropertyGroup>
     27   <ItemGroup>
     28     <Reference Include="System" />
     29     <Reference Include="System.Data" />
     30     <Reference Include="System.Xml" />
     31   </ItemGroup>
     32   <ItemGroup>
     33     <Compile Include="..\..\Common\CommandLineParser.cs">
     34       <Link>Common\CommandLineParser.cs</Link>
     35     </Compile>
     36     <Compile Include="..\..\Common\CRC.cs">
     37       <Link>Common\CRC.cs</Link>
     38     </Compile>
     39     <Compile Include="..\..\ICoder.cs">
     40       <Link>ICoder.cs</Link>
     41     </Compile>
     42     <Compile Include="..\LZ\IMatchFinder.cs">
     43       <Link>LZ\IMatchFinder.cs</Link>
     44     </Compile>
     45     <Compile Include="..\LZ\LzBinTree.cs">
     46       <Link>LZ\LzBinTree.cs</Link>
     47     </Compile>
     48     <Compile Include="..\LZ\LzInWindow.cs">
     49       <Link>LZ\LzInWindow.cs</Link>
     50     </Compile>
     51     <Compile Include="..\LZ\LzOutWindow.cs">
     52       <Link>LZ\LzOutWindow.cs</Link>
     53     </Compile>
     54     <Compile Include="..\LZMA\LzmaBase.cs">
     55       <Link>LZMA\LzmaBase.cs</Link>
     56     </Compile>
     57     <Compile Include="..\LZMA\LzmaDecoder.cs">
     58       <Link>LZMA\LzmaDecoder.cs</Link>
     59     </Compile>
     60     <Compile Include="..\LZMA\LzmaEncoder.cs">
     61       <Link>LZMA\LzmaEncoder.cs</Link>
     62     </Compile>
     63     <Compile Include="..\RangeCoder\RangeCoder.cs">
     64       <Link>RangeCoder\RangeCoder.cs</Link>
     65     </Compile>
     66     <Compile Include="..\RangeCoder\RangeCoderBit.cs">
     67       <Link>RangeCoder\RangeCoderBit.cs</Link>
     68     </Compile>
     69     <Compile Include="..\RangeCoder\RangeCoderBitTree.cs">
     70       <Link>RangeCoder\RangeCoderBitTree.cs</Link>
     71     </Compile>
     72     <Compile Include="LzmaAlone.cs">
     73       <SubType>Code</SubType>
     74     </Compile>
     75     <Compile Include="LzmaBench.cs">
     76       <SubType>Code</SubType>
     77     </Compile>
     78     <Compile Include="Properties\AssemblyInfo.cs" />
     79     <Compile Include="Properties\Settings.cs">
     80       <AutoGen>True</AutoGen>
     81       <DependentUpon>Settings.settings</DependentUpon>
     82     </Compile>
     83     <None Include="Properties\Settings.settings">
     84       <Generator>SettingsSingleFileGenerator</Generator>
     85       <LastGenOutput>Settings.cs</LastGenOutput>
     86     </None>
     87     <AppDesigner Include="Properties\" />
     88   </ItemGroup>
     89   <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
     90 </Project>