mirror of
https://github.com/winterknife/EVENSTAR
synced 2026-06-21 14:13:51 +00:00
85 lines
3.9 KiB
XML
85 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{455ed3cd-df55-4d4f-8c22-895e06ae469b}</ProjectGuid>
|
|
<TemplateGuid>{dd38f7fc-d7bd-488b-9242-7d8754cde80d}</TemplateGuid>
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
|
|
<Configuration>Debug</Configuration>
|
|
<Platform Condition="'$(Platform)' == ''">Win32</Platform>
|
|
<RootNamespace>KernelToUserInjector</RootNamespace>
|
|
<WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
<TargetVersion>Windows10</TargetVersion>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
<PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>
|
|
<ConfigurationType>Driver</ConfigurationType>
|
|
<DriverType>WDM</DriverType>
|
|
<Driver_SpectreMitigation>Spectre</Driver_SpectreMitigation>
|
|
<ALLOW_DATE_TIME>1</ALLOW_DATE_TIME>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>
|
|
<OutDir>.\Bin\x64\</OutDir>
|
|
<IntDir>.\Temp\x64\</IntDir>
|
|
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
<EnableInf2cat>false</EnableInf2cat>
|
|
<DiagnosticMode>true</DiagnosticMode>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<ClCompile>
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
<ConformanceMode>true</ConformanceMode>
|
|
<Optimization>Disabled</Optimization>
|
|
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
|
<ControlFlowGuard>false</ControlFlowGuard>
|
|
<AdditionalOptions>/KERNEL /homeparams %(AdditionalOptions)</AdditionalOptions>
|
|
<SuppressStartupBanner>false</SuppressStartupBanner>
|
|
<EnablePREfast>false</EnablePREfast>
|
|
</ClCompile>
|
|
<Link>
|
|
<AdditionalOptions>/EMITPOGOPHASEINFO /NOVCFEATURE /NOCOFFGRPINFO /FILEALIGN:0x200 /PDBALTPATH:$(ProjectName).pdb /Brepro /RELEASE /EMITTOOLVERSIONINFO:NO %(AdditionalOptions)</AdditionalOptions>
|
|
<EntryPointSymbol />
|
|
<AdditionalDependencies>Ntoskrnl.lib</AdditionalDependencies>
|
|
<GenerateDebugInformation>DebugFull</GenerateDebugInformation>
|
|
<ShowProgress>LinkVerbose</ShowProgress>
|
|
</Link>
|
|
<DriverSign>
|
|
<FileDigestAlgorithm>SHA1</FileDigestAlgorithm>
|
|
</DriverSign>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<FilesToPackage Include="$(TargetPath)" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="Src\DrvMain.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="Src\KernelToUserInjection.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="Inc\BaseDataTypes.h" />
|
|
<ClInclude Include="Inc\Common.h" />
|
|
<ClInclude Include="Inc\KernelToUserInjection.h" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |