Advertisement
FlyFar

DoubleAgentDll/DoubleAgentDll.vcxproj

Jan 1st, 2024
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 8.31 KB | Cybersecurity | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.0" 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.     <ProjectConfiguration Include="Debug|x64">
  13.       <Configuration>Debug</Configuration>
  14.       <Platform>x64</Platform>
  15.     </ProjectConfiguration>
  16.     <ProjectConfiguration Include="Release|x64">
  17.       <Configuration>Release</Configuration>
  18.       <Platform>x64</Platform>
  19.     </ProjectConfiguration>
  20.   </ItemGroup>
  21.   <PropertyGroup Label="Globals">
  22.     <ProjectGuid>{0358B01A-8542-482B-87C0-F141655BD802}</ProjectGuid>
  23.     <RootNamespace>DoubleAgentDll</RootNamespace>
  24.     <WindowsTargetPlatformVersion>8.1</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>v141</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>v141</PlatformToolset>
  37.     <WholeProgramOptimization>true</WholeProgramOptimization>
  38.     <CharacterSet>Unicode</CharacterSet>
  39.   </PropertyGroup>
  40.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  41.     <ConfigurationType>DynamicLibrary</ConfigurationType>
  42.     <UseDebugLibraries>true</UseDebugLibraries>
  43.     <PlatformToolset>v141</PlatformToolset>
  44.     <CharacterSet>Unicode</CharacterSet>
  45.   </PropertyGroup>
  46.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  47.     <ConfigurationType>DynamicLibrary</ConfigurationType>
  48.     <UseDebugLibraries>false</UseDebugLibraries>
  49.     <PlatformToolset>v141</PlatformToolset>
  50.     <WholeProgramOptimization>true</WholeProgramOptimization>
  51.     <CharacterSet>Unicode</CharacterSet>
  52.   </PropertyGroup>
  53.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  54.   <ImportGroup Label="ExtensionSettings">
  55.   </ImportGroup>
  56.   <ImportGroup Label="Shared">
  57.   </ImportGroup>
  58.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  59.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  60.   </ImportGroup>
  61.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  62.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  63.   </ImportGroup>
  64.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  65.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  66.   </ImportGroup>
  67.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  68.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  69.   </ImportGroup>
  70.   <PropertyGroup Label="UserMacros" />
  71.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  72.     <OutDir>$(SolutionDir)bin\x86\</OutDir>
  73.   </PropertyGroup>
  74.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  75.     <OutDir>$(SolutionDir)bin\x86\</OutDir>
  76.   </PropertyGroup>
  77.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  78.     <OutDir>$(SolutionDir)bin\x64\</OutDir>
  79.   </PropertyGroup>
  80.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  81.     <OutDir>$(SolutionDir)bin\x64\</OutDir>
  82.   </PropertyGroup>
  83.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  84.     <ClCompile>
  85.       <WarningLevel>Level4</WarningLevel>
  86.       <Optimization>Disabled</Optimization>
  87.       <AdditionalIncludeDirectories>..\DoubleAgentShared;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  88.       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  89.       <TreatWarningAsError>true</TreatWarningAsError>
  90.       <BasicRuntimeChecks />
  91.       <BufferSecurityCheck>false</BufferSecurityCheck>
  92.     </ClCompile>
  93.     <Link />
  94.     <Link>
  95.       <IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries>
  96.       <SubSystem>Console</SubSystem>
  97.       <EntryPointSymbol>DllMain</EntryPointSymbol>
  98.     </Link>
  99.   </ItemDefinitionGroup>
  100.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  101.     <ClCompile>
  102.       <WarningLevel>Level4</WarningLevel>
  103.       <Optimization>Disabled</Optimization>
  104.       <AdditionalIncludeDirectories>..\DoubleAgentShared;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  105.       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  106.       <TreatWarningAsError>true</TreatWarningAsError>
  107.       <BasicRuntimeChecks />
  108.       <BufferSecurityCheck>false</BufferSecurityCheck>
  109.     </ClCompile>
  110.     <Link />
  111.     <Link>
  112.       <IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries>
  113.       <SubSystem>Console</SubSystem>
  114.       <EntryPointSymbol>DllMain</EntryPointSymbol>
  115.     </Link>
  116.   </ItemDefinitionGroup>
  117.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  118.     <ClCompile>
  119.       <WarningLevel>Level4</WarningLevel>
  120.       <Optimization>MaxSpeed</Optimization>
  121.       <FunctionLevelLinking>true</FunctionLevelLinking>
  122.       <IntrinsicFunctions>true</IntrinsicFunctions>
  123.       <AdditionalIncludeDirectories>..\DoubleAgentShared;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  124.       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  125.       <TreatWarningAsError>true</TreatWarningAsError>
  126.       <BasicRuntimeChecks />
  127.       <BufferSecurityCheck>false</BufferSecurityCheck>
  128.       <WholeProgramOptimization>false</WholeProgramOptimization>
  129.     </ClCompile>
  130.     <Link>
  131.       <EnableCOMDATFolding>true</EnableCOMDATFolding>
  132.       <OptimizeReferences>true</OptimizeReferences>
  133.       <IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries>
  134.       <SubSystem>Console</SubSystem>
  135.       <EntryPointSymbol>DllMain</EntryPointSymbol>
  136.     </Link>
  137.   </ItemDefinitionGroup>
  138.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  139.     <ClCompile>
  140.       <WarningLevel>Level4</WarningLevel>
  141.       <Optimization>MaxSpeed</Optimization>
  142.       <FunctionLevelLinking>true</FunctionLevelLinking>
  143.       <IntrinsicFunctions>true</IntrinsicFunctions>
  144.       <AdditionalIncludeDirectories>..\DoubleAgentShared;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  145.       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  146.       <TreatWarningAsError>true</TreatWarningAsError>
  147.       <BasicRuntimeChecks />
  148.       <BufferSecurityCheck>false</BufferSecurityCheck>
  149.       <WholeProgramOptimization>false</WholeProgramOptimization>
  150.     </ClCompile>
  151.     <Link>
  152.       <EnableCOMDATFolding>true</EnableCOMDATFolding>
  153.       <OptimizeReferences>true</OptimizeReferences>
  154.       <IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries>
  155.       <SubSystem>Console</SubSystem>
  156.       <EntryPointSymbol>DllMain</EntryPointSymbol>
  157.     </Link>
  158.   </ItemDefinitionGroup>
  159.   <ItemGroup>
  160.     <ClCompile Include="main.c" />
  161.     <ClCompile Include="Memory.c" />
  162.     <ClCompile Include="Process.c" />
  163.     <ClCompile Include="VerifierDll.c" />
  164.   </ItemGroup>
  165.   <ItemGroup>
  166.     <ClInclude Include="Memory.h" />
  167.     <ClInclude Include="Process.h" />
  168.     <ClInclude Include="VerifierDll.h" />
  169.   </ItemGroup>
  170.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  171.   <ImportGroup Label="ExtensionTargets">
  172.   </ImportGroup>
  173. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement