tor-browser

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

InetBgDl.vcxproj (5469B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      3   <ItemGroup Label="ProjectConfigurations">
      4     <ProjectConfiguration Include="Debug|Win32">
      5       <Configuration>Debug</Configuration>
      6       <Platform>Win32</Platform>
      7     </ProjectConfiguration>
      8     <ProjectConfiguration Include="Release|Win32">
      9       <Configuration>Release</Configuration>
     10       <Platform>Win32</Platform>
     11     </ProjectConfiguration>
     12   </ItemGroup>
     13   <ItemGroup>
     14     <ClCompile Include="InetBgDL.cpp" />
     15   </ItemGroup>
     16   <ItemGroup>
     17     <ClInclude Include="InetBgDL.h" />
     18   </ItemGroup>
     19   <PropertyGroup Label="Globals">
     20     <VCProjectVersion>16.0</VCProjectVersion>
     21     <ProjectGuid>{B9B76BC4-5C6C-4808-AC23-2C10126CDFC0}</ProjectGuid>
     22     <Keyword>Win32Proj</Keyword>
     23     <RootNamespace>InetBgDl</RootNamespace>
     24     <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
     25   </PropertyGroup>
     26   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
     27   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
     28     <ConfigurationType>DynamicLibrary</ConfigurationType>
     29     <UseDebugLibraries>true</UseDebugLibraries>
     30     <PlatformToolset>v142</PlatformToolset>
     31     <CharacterSet>Unicode</CharacterSet>
     32   </PropertyGroup>
     33   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     34     <ConfigurationType>DynamicLibrary</ConfigurationType>
     35     <UseDebugLibraries>false</UseDebugLibraries>
     36     <PlatformToolset>v142</PlatformToolset>
     37     <WholeProgramOptimization>true</WholeProgramOptimization>
     38     <CharacterSet>Unicode</CharacterSet>
     39   </PropertyGroup>
     40   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
     41   <ImportGroup Label="ExtensionSettings">
     42   </ImportGroup>
     43   <ImportGroup Label="Shared">
     44   </ImportGroup>
     45   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     46     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     47   </ImportGroup>
     48   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     49     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     50   </ImportGroup>
     51   <PropertyGroup Label="UserMacros" />
     52   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     53     <LinkIncremental>true</LinkIncremental>
     54   </PropertyGroup>
     55   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     56     <LinkIncremental>false</LinkIncremental>
     57   </PropertyGroup>
     58   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     59     <ClCompile>
     60       <PrecompiledHeader>NotUsing</PrecompiledHeader>
     61       <WarningLevel>Level3</WarningLevel>
     62       <Optimization>Disabled</Optimization>
     63       <SDLCheck>false</SDLCheck>
     64       <PreprocessorDefinitions>WINVER=0x601;_WIN32_WINNT=0x601;WIN32;_DEBUG;INETBGDL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     65       <ConformanceMode>true</ConformanceMode>
     66       <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
     67       <ExceptionHandling>false</ExceptionHandling>
     68     </ClCompile>
     69     <Link>
     70       <SubSystem>Console</SubSystem>
     71       <GenerateDebugInformation>true</GenerateDebugInformation>
     72       <EnableUAC>false</EnableUAC>
     73       <AdditionalDependencies>wininet.lib;%(AdditionalDependencies)</AdditionalDependencies>
     74       <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
     75       <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
     76     </Link>
     77   </ItemDefinitionGroup>
     78   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     79     <ClCompile>
     80       <PrecompiledHeader>NotUsing</PrecompiledHeader>
     81       <WarningLevel>Level3</WarningLevel>
     82       <Optimization>MinSpace</Optimization>
     83       <FunctionLevelLinking>true</FunctionLevelLinking>
     84       <IntrinsicFunctions>true</IntrinsicFunctions>
     85       <SDLCheck>false</SDLCheck>
     86       <PreprocessorDefinitions>WINVER=0x601;_WIN32_WINNT=0x601;WIN32;NDEBUG;INETBGDL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     87       <ExceptionHandling>false</ExceptionHandling>
     88       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
     89       <OmitDefaultLibName>true</OmitDefaultLibName>
     90       <BufferSecurityCheck>false</BufferSecurityCheck>
     91       <FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
     92     </ClCompile>
     93     <Link>
     94       <SubSystem>Console</SubSystem>
     95       <EnableCOMDATFolding>true</EnableCOMDATFolding>
     96       <OptimizeReferences>true</OptimizeReferences>
     97       <GenerateDebugInformation>false</GenerateDebugInformation>
     98       <EnableUAC>false</EnableUAC>
     99       <AdditionalDependencies>wininet.lib;%(AdditionalDependencies)</AdditionalDependencies>
    100       <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
    101       <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
    102       <EntryPointSymbol>DllMain</EntryPointSymbol>
    103     </Link>
    104   </ItemDefinitionGroup>
    105   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
    106   <ImportGroup Label="ExtensionTargets">
    107   </ImportGroup>
    108 </Project>