|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 | 3 | <ItemGroup Label="ProjectConfigurations"> |
| 4 | + <ProjectConfiguration Include="Debug Legacy|Win32"> |
| 5 | + <Configuration>Debug Legacy</Configuration> |
| 6 | + <Platform>Win32</Platform> |
| 7 | + </ProjectConfiguration> |
| 8 | + <ProjectConfiguration Include="Debug Legacy|x64"> |
| 9 | + <Configuration>Debug Legacy</Configuration> |
| 10 | + <Platform>x64</Platform> |
| 11 | + </ProjectConfiguration> |
4 | 12 | <ProjectConfiguration Include="Debug|Win32"> |
5 | 13 | <Configuration>Debug</Configuration> |
6 | 14 | <Platform>Win32</Platform> |
|
36 | 44 | <ConfigurationType>Driver</ConfigurationType> |
37 | 45 | <DriverType>WDM</DriverType> |
38 | 46 | </PropertyGroup> |
| 47 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|Win32'" Label="Configuration"> |
| 48 | + <TargetVersion>Windows7</TargetVersion> |
| 49 | + <UseDebugLibraries>true</UseDebugLibraries> |
| 50 | + <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset> |
| 51 | + <ConfigurationType>Driver</ConfigurationType> |
| 52 | + <DriverType>WDM</DriverType> |
| 53 | + </PropertyGroup> |
39 | 54 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
40 | 55 | <TargetVersion>Windows7</TargetVersion> |
41 | 56 | <UseDebugLibraries>false</UseDebugLibraries> |
|
50 | 65 | <ConfigurationType>Driver</ConfigurationType> |
51 | 66 | <DriverType>WDM</DriverType> |
52 | 67 | </PropertyGroup> |
| 68 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|x64'" Label="Configuration"> |
| 69 | + <TargetVersion>Windows7</TargetVersion> |
| 70 | + <UseDebugLibraries>true</UseDebugLibraries> |
| 71 | + <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset> |
| 72 | + <ConfigurationType>Driver</ConfigurationType> |
| 73 | + <DriverType>WDM</DriverType> |
| 74 | + </PropertyGroup> |
53 | 75 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> |
54 | 76 | <TargetVersion>Windows7</TargetVersion> |
55 | 77 | <UseDebugLibraries>false</UseDebugLibraries> |
|
68 | 90 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
69 | 91 | <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> |
70 | 92 | <TargetName>$(TargetName.Replace(' ',''))-x86</TargetName> |
| 93 | + <IntDir>Intermediate\$(Platform)\$(ConfigurationName)\</IntDir> |
| 94 | + <OutDir>$(SolutionDir)\Out\</OutDir> |
| 95 | + </PropertyGroup> |
| 96 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|Win32'"> |
| 97 | + <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> |
| 98 | + <TargetName>$(TargetName.Replace(' ',''))-Legacy-x86</TargetName> |
| 99 | + <IntDir>Intermediate\$(Platform)\$(ConfigurationName)\</IntDir> |
| 100 | + <OutDir>$(SolutionDir)\Out\</OutDir> |
71 | 101 | </PropertyGroup> |
72 | 102 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
73 | 103 | <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> |
74 | 104 | <TargetName>$(TargetName.Replace(' ',''))-x86</TargetName> |
| 105 | + <IntDir>Intermediate\$(Platform)\$(ConfigurationName)\</IntDir> |
| 106 | + <OutDir>$(SolutionDir)\Out\</OutDir> |
75 | 107 | </PropertyGroup> |
76 | 108 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
77 | 109 | <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> |
78 | 110 | <TargetName>$(TargetName.Replace(' ',''))-amd64</TargetName> |
79 | | - <OutDir>$(SolutionDir)\$(ConfigurationName)\</OutDir> |
| 111 | + <OutDir>$(SolutionDir)\Out\</OutDir> |
| 112 | + <IntDir>Intermediate\$(Platform)\$(ConfigurationName)\</IntDir> |
| 113 | + </PropertyGroup> |
| 114 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|x64'"> |
| 115 | + <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> |
| 116 | + <TargetName>$(TargetName.Replace(' ',''))-Legacy-amd64</TargetName> |
| 117 | + <OutDir>$(SolutionDir)\Out\</OutDir> |
| 118 | + <IntDir>Intermediate\$(Platform)\$(ConfigurationName)\</IntDir> |
80 | 119 | </PropertyGroup> |
81 | 120 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
82 | 121 | <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> |
83 | 122 | <TargetName>$(TargetName.Replace(' ',''))-amd64</TargetName> |
84 | | - <OutDir>$(SolutionDir)\$(ConfigurationName)\</OutDir> |
| 123 | + <OutDir>$(SolutionDir)\Out\</OutDir> |
| 124 | + <IntDir>Intermediate\$(Platform)\$(ConfigurationName)\</IntDir> |
85 | 125 | </PropertyGroup> |
86 | 126 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
87 | 127 | <Link> |
88 | 128 | <Version>6.0</Version> |
| 129 | + <MinimumRequiredVersion>6.00</MinimumRequiredVersion> |
| 130 | + </Link> |
| 131 | + </ItemDefinitionGroup> |
| 132 | + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|Win32'"> |
| 133 | + <Link> |
| 134 | + <Version>5.0</Version> |
| 135 | + <MinimumRequiredVersion>5.00</MinimumRequiredVersion> |
| 136 | + <Driver>WDM</Driver> |
89 | 137 | </Link> |
| 138 | + <ClCompile> |
| 139 | + <PreprocessorDefinitions>%(PreprocessorDefinitions);TD_LEGACY=1</PreprocessorDefinitions> |
| 140 | + </ClCompile> |
90 | 141 | </ItemDefinitionGroup> |
91 | 142 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
92 | 143 | <Link> |
93 | 144 | <Version>6.0</Version> |
94 | 145 | </Link> |
95 | 146 | </ItemDefinitionGroup> |
| 147 | + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|x64'"> |
| 148 | + <Link> |
| 149 | + <MinimumRequiredVersion>5.02</MinimumRequiredVersion> |
| 150 | + <Version>5.0</Version> |
| 151 | + </Link> |
| 152 | + <ClCompile> |
| 153 | + <PreprocessorDefinitions>_WIN64;_AMD64_;AMD64;%(PreprocessorDefinitions);TD_LEGACY=1</PreprocessorDefinitions> |
| 154 | + </ClCompile> |
| 155 | + </ItemDefinitionGroup> |
| 156 | + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
| 157 | + <Inf> |
| 158 | + <SpecifyDriverVerDirectiveVersion>false</SpecifyDriverVerDirectiveVersion> |
| 159 | + </Inf> |
| 160 | + <Link> |
| 161 | + <MinimumRequiredVersion>6.00</MinimumRequiredVersion> |
| 162 | + </Link> |
| 163 | + </ItemDefinitionGroup> |
96 | 164 | <ItemGroup> |
97 | 165 | <FilesToPackage Include="$(TargetPath)" /> |
98 | 166 | <FilesToPackage Include="@(Inf->'%(CopyOutput)')" Condition="'@(Inf)'!=''" /> |
99 | 167 | </ItemGroup> |
100 | 168 | <ItemGroup> |
101 | | - <ClInclude Include="resource.h" /> |
102 | | - <ClInclude Include="TimeDefuser.h" /> |
| 169 | + <ClInclude Include="src\resource.h" /> |
| 170 | + <ClInclude Include="src\TimeDefuser.h" /> |
103 | 171 | </ItemGroup> |
104 | 172 | <ItemGroup> |
105 | | - <ResourceCompile Include="TimeDefuser.rc" /> |
| 173 | + <Inf Include="src\TimeDefuser.inf" /> |
106 | 174 | </ItemGroup> |
107 | 175 | <ItemGroup> |
108 | | - <None Include="TimeDefuser.inf" /> |
| 176 | + <ResourceCompile Include="src\TimeDefuser.rc" /> |
109 | 177 | </ItemGroup> |
110 | 178 | <ItemGroup> |
111 | | - <ClCompile Include="Driver.c" /> |
| 179 | + <ClCompile Include="src\Driver.c"> |
| 180 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|Win32'">true</ExcludedFromBuild> |
| 181 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|x64'">true</ExcludedFromBuild> |
| 182 | + </ClCompile> |
| 183 | + <ClCompile Include="src\DriverLegacy.c"> |
| 184 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> |
| 185 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|Win32'">false</ExcludedFromBuild> |
| 186 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> |
| 187 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Legacy|x64'">false</ExcludedFromBuild> |
| 188 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> |
| 189 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> |
| 190 | + </ClCompile> |
112 | 191 | </ItemGroup> |
113 | 192 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
114 | 193 | <ImportGroup Label="ExtensionTargets"> |
|
0 commit comments