diff options
| author | auth12 <[email protected]> | 2021-07-06 23:21:34 +0100 |
|---|---|---|
| committer | auth12 <[email protected]> | 2021-07-06 23:21:34 +0100 |
| commit | 813e464a2f7a6ebfe073b1cade577f9f803ae700 (patch) | |
| tree | fbe765e26ba39db34979bec773d24bfe5256a85a /sysmap/sysmap.vcxproj | |
| parent | replaced CreateRemoteThread (diff) | |
| download | archived-sysmap-813e464a2f7a6ebfe073b1cade577f9f803ae700.tar.xz archived-sysmap-813e464a2f7a6ebfe073b1cade577f9f803ae700.zip | |
Replaced create thread with thread hijacking
Diffstat (limited to 'sysmap/sysmap.vcxproj')
| -rw-r--r-- | sysmap/sysmap.vcxproj | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sysmap/sysmap.vcxproj b/sysmap/sysmap.vcxproj index a42f5d0..dc6b77d 100644 --- a/sysmap/sysmap.vcxproj +++ b/sysmap/sysmap.vcxproj @@ -81,9 +81,10 @@ </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <LinkIncremental>false</LinkIncremental> - <OutDir>$(SolutionDir)bin\$(Platform)\$(Configuration)\</OutDir> - <IntDir>obj\$(Platform)\$(Configuration)\</IntDir> + <OutDir>$(SolutionDir)bin\$(Configuration)\$(Platform)\</OutDir> + <IntDir>obj\$(Configuration)\$(Platform)\</IntDir> <IncludePath>$(SolutionDir)modules\phnt\;$(SolutionDir)modules\linuxpe\includes\;$(SolutionDir)modules\spdlog\include\;$(IncludePath)</IncludePath> + <LibraryPath>$(LibraryPath)</LibraryPath> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> @@ -141,7 +142,8 @@ <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> <GenerateDebugInformation>true</GenerateDebugInformation> - <UACExecutionLevel>RequireAdministrator</UACExecutionLevel> + <UACExecutionLevel>AsInvoker</UACExecutionLevel> + <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> </Link> </ItemDefinitionGroup> <ItemGroup> |