aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsegfault <toni@impl.cc>2020-05-22 19:10:29 +0200
committersegfault <toni@impl.cc>2020-05-22 19:10:29 +0200
commitbb7aa982af521a79459b48f9a6c702b0e6af3cb8 (patch)
tree83d4b78941d9007b60125a8a501f7682e2797d89
parentcd76323e681de15f8391ce900142e965ad3b689c (diff)
VS2019 support
-rw-r--r--.gitignore4
-rw-r--r--PastDSECtrl/PastDSECtrl.vcxproj10
-rw-r--r--driver-sign.bat2
3 files changed, 10 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index ba598f6..3359ffe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -251,3 +251,7 @@ paket-files/
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
+/x64/Debug
+/x64/Release
+/PastDSEDriver/x64
+/PastDSECtrl/x64
diff --git a/PastDSECtrl/PastDSECtrl.vcxproj b/PastDSECtrl/PastDSECtrl.vcxproj
index b3b6ff3..ef0c7b4 100644
--- a/PastDSECtrl/PastDSECtrl.vcxproj
+++ b/PastDSECtrl/PastDSECtrl.vcxproj
@@ -23,26 +23,26 @@
<ProjectGuid>{03D1195B-3152-4DD3-8CB1-F0939DB8086A}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>PastDSECtrl</RootNamespace>
- <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
+ <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v141</PlatformToolset>
+ <PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v141</PlatformToolset>
+ <PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v141</PlatformToolset>
+ <PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<UseOfMfc>Static</UseOfMfc>
<SpectreMitigation>false</SpectreMitigation>
@@ -50,7 +50,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v141</PlatformToolset>
+ <PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<UseOfMfc>Static</UseOfMfc>
diff --git a/driver-sign.bat b/driver-sign.bat
index 03d911f..ca91495 100644
--- a/driver-sign.bat
+++ b/driver-sign.bat
@@ -1,6 +1,6 @@
@echo off
-set SIGNTOOL="C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64\signtool.exe"
+set SIGNTOOL="C:\Program Files (x86)\Windows Kits\10\bin\10.0.18362.0\x64\signtool.exe"
set DRIVER_DEBUG="%~dp0x64\Debug\PastDSEDriver.sys"
set DRIVER_RELEASE="%~dp0x64\Release\PastDSEDriver.sys"
set CA="%~dp0\certs\VeriSign Class 3 Public Primary Certification Authority - G5.cer"