|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [win-pv-devel] [PATCH xencons 1/2] Add support for building with Visual Studio 2017
Also remove mappings for obsolete versions of VS in build.py.
Signed-off-by: Paul Durrant <paul.durrant@xxxxxxxxxx>
---
build.py | 46 +++++---
msbuild.bat | 6 +-
vs2017/configs.props | 45 ++++++++
vs2017/package/package.vcxproj | 56 ++++++++++
vs2017/package/package.vcxproj.user | 8 ++
vs2017/targets.props | 35 ++++++
vs2017/xencons.sln | 122 +++++++++++++++++++++
vs2017/xencons/xencons.vcxproj | 83 ++++++++++++++
vs2017/xencons/xencons.vcxproj.user | 8 ++
vs2017/xencons_coinst/xencons_coinst.vcxproj | 60 ++++++++++
vs2017/xencons_coinst/xencons_coinst.vcxproj.user | 8 ++
vs2017/xencons_monitor/xencons_monitor.vcxproj | 77 +++++++++++++
.../xencons_monitor/xencons_monitor.vcxproj.user | 8 ++
vs2017/xencons_tty/xencons_tty.vcxproj | 60 ++++++++++
vs2017/xencons_tty/xencons_tty.vcxproj.user | 8 ++
15 files changed, 610 insertions(+), 20 deletions(-)
create mode 100644 vs2017/configs.props
create mode 100644 vs2017/package/package.vcxproj
create mode 100644 vs2017/package/package.vcxproj.user
create mode 100644 vs2017/targets.props
create mode 100644 vs2017/xencons.sln
create mode 100644 vs2017/xencons/xencons.vcxproj
create mode 100644 vs2017/xencons/xencons.vcxproj.user
create mode 100644 vs2017/xencons_coinst/xencons_coinst.vcxproj
create mode 100644 vs2017/xencons_coinst/xencons_coinst.vcxproj.user
create mode 100644 vs2017/xencons_monitor/xencons_monitor.vcxproj
create mode 100644 vs2017/xencons_monitor/xencons_monitor.vcxproj.user
create mode 100644 vs2017/xencons_tty/xencons_tty.vcxproj
create mode 100644 vs2017/xencons_tty/xencons_tty.vcxproj.user
diff --git a/build.py b/build.py
index 710b234..b72a43a 100644
--- a/build.py
+++ b/build.py
@@ -172,18 +172,28 @@ def shell(command, dir):
return sub.returncode
+def find(name, path):
+ for root, dirs, files in os.walk(path):
+ if name in files:
+ return os.path.join(root, name)
+
+
class msbuild_failure(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
+
def msbuild(platform, configuration, target, file, args, dir):
- os.environ['PLATFORM'] = platform
- os.environ['CONFIGURATION'] = configuration
- os.environ['TARGET'] = target
- os.environ['FILE'] = file
- os.environ['EXTRA'] = args
+ vcvarsall = find('vcvarsall.bat', os.environ['VS'])
+
+ os.environ['MSBUILD_PLATFORM'] = platform
+ os.environ['MSBUILD_CONFIGURATION'] = configuration
+ os.environ['MSBUILD_TARGET'] = target
+ os.environ['MSBUILD_FILE'] = file
+ os.environ['MSBUILD_EXTRA'] = args
+ os.environ['MSBUILD_VCVARSALL'] = vcvarsall
bin = os.path.join(os.getcwd(), 'msbuild.bat')
@@ -201,8 +211,6 @@ def build_sln(name, release, arch, debug, vs):
elif arch == 'x64':
platform = 'x64'
- cwd = os.getcwd()
-
msbuild(platform, configuration, 'Build', name + '.sln', '', vs)
def copy_package(name, release, arch, debug, vs):
@@ -358,24 +366,24 @@ def archive(filename, files, tgz=False):
def getVsVersion():
- vsenv ={}
- vars = subprocess.check_output([os.environ['VS']+'\\VC\\vcvarsall.bat',
- '&&', 'set'],
- shell=True)
+ vsenv = {}
+ vcvarsall= find('vcvarsall.bat', os.environ['VS'])
+
+ vars = subprocess.check_output([vcvarsall, 'x86_amd64', '&&', 'set'],
shell=True)
+
for var in vars.splitlines():
k, _, v = map(str.strip, var.strip().decode('utf-8').partition('='))
if k.startswith('?'):
continue
vsenv[k] = v
- mapping = { '11.0':'vs2012',
- '12.0':'vs2013',
- '14.0':'vs2015' }
+ mapping = { '14.0':'vs2015',
+ '15.0':'vs2017'}
return mapping[vsenv['VisualStudioVersion']]
-if __name__ == '__main__':
+def main():
debug = { 'checked': True, 'free': False }
sdv = { 'nosdv': False, None: True }
driver = 'xencons'
@@ -416,9 +424,8 @@ if __name__ == '__main__':
symstore_del(driver, 30)
- release = { 'vs2012':'Windows Vista',
- 'vs2013':'Windows 7',
- 'vs2015':'Windows 8' }
+ release = { 'vs2015':'Windows 8',
+ 'vs2017':'Windows 8' }
shutil.rmtree(driver, ignore_errors=True)
@@ -436,3 +443,6 @@ if __name__ == '__main__':
archive(driver + '\\source.tgz', manifest().splitlines(), tgz=True)
archive(driver + '.tar', [driver,'revision'])
+
+if __name__ == '__main__':
+ main()
diff --git a/msbuild.bat b/msbuild.bat
index 1b1fbc8..a28f939 100644
--- a/msbuild.bat
+++ b/msbuild.bat
@@ -1,6 +1,8 @@
-call "%VS%\VC\vcvarsall.bat" x86
+set MSBUILD_ROOT=%cd%
+call "%MSBUILD_VCVARSALL%" x86_amd64
@echo on
-msbuild.exe /m:1 /p:Configuration="%CONFIGURATION%" /p:Platform="%PLATFORM%"
/t:"%TARGET%" %EXTRA% %FILE%
+cd "%MSBUILD_ROOT%"
+msbuild.exe /m:1 /p:Configuration="%MSBUILD_CONFIGURATION%"
/p:Platform="%MSBUILD_PLATFORM%" /t:"%MSBUILD_TARGET%" %MSBUILD_EXTRA%
%MSBUILD_FILE%
if errorlevel 1 goto error
exit 0
diff --git a/vs2017/configs.props b/vs2017/configs.props
new file mode 100644
index 0000000..6fe9a33
--- /dev/null
+++ b/vs2017/configs.props
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Windows 10 Debug|Win32">
+ <Configuration>Windows 10 Debug</Configuration>
+ <Platform>Win32</Platform>
+
<WindowsTargetPlatformVersion>10</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Windows 10 Release|Win32">
+ <Configuration>Windows 10 Release</Configuration>
+ <Platform>Win32</Platform>
+
<WindowsTargetPlatformVersion>10</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Windows 10 Debug|x64">
+ <Configuration>Windows 10 Debug</Configuration>
+ <Platform>x64</Platform>
+
<WindowsTargetPlatformVersion>10</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Windows 10 Release|x64">
+ <Configuration>Windows 10 Release</Configuration>
+ <Platform>x64</Platform>
+
<WindowsTargetPlatformVersion>10</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Windows 8 Debug|Win32">
+ <Configuration>Windows 8 Debug</Configuration>
+ <Platform>Win32</Platform>
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Windows 8 Release|Win32">
+ <Configuration>Windows 8 Release</Configuration>
+ <Platform>Win32</Platform>
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Windows 8 Debug|x64">
+ <Configuration>Windows 8 Debug</Configuration>
+ <Platform>x64</Platform>
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Windows 8 Release|x64">
+ <Configuration>Windows 8 Release</Configuration>
+ <Platform>x64</Platform>
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
+ </ProjectConfiguration>
+ </ItemGroup>
+</Project>
diff --git a/vs2017/package/package.vcxproj b/vs2017/package/package.vcxproj
new file mode 100644
index 0000000..6d2ee3d
--- /dev/null
+++ b/vs2017/package/package.vcxproj
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\configs.props" />
+ <PropertyGroup Label="PropertySheets">
+ <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>
+ <ConfigurationType>Utility</ConfigurationType>
+ <DriverType>Package</DriverType>
+ <DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
+ <SupportsPackaging>true</SupportsPackaging>
+ <DriverTargetPlatform>Desktop</DriverTargetPlatform>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}</ProjectGuid>
+ </PropertyGroup>
+ <Import Project="..\targets.props" />
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <PropertyGroup>
+ <EnableInf2cat>true</EnableInf2cat>
+ <Inf2CatWindowsVersionList
Condition="'$(Platform)'=='x64'">8_x64;Server8_x64;10_x64;Server10_x64</Inf2CatWindowsVersionList>
+ <Inf2CatWindowsVersionList
Condition="'$(Platform)'=='Win32'">8_x86;10_x86</Inf2CatWindowsVersionList>
+ <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>
+ <EnableDeployment>False</EnableDeployment>
+ <ImportToStore>False</ImportToStore>
+ <InstallMode>None</InstallMode>
+ <ScriptDeviceQuery>%PathToInf%</ScriptDeviceQuery>
+ <EnableVerifier>False</EnableVerifier>
+ <AllDrivers>False</AllDrivers>
+ <VerifyProjectOutput>True</VerifyProjectOutput>
+ <VerifyDrivers />
+ <VerifyFlags>133563</VerifyFlags>
+ <IntDir>..\$(ProjectName)\$(ConfigurationName)\$(Platform)\</IntDir>
+ <OutDir>..\$(ConfigurationName)\$(Platform)\</OutDir>
+ </PropertyGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\xencons\xencons.vcxproj">
+ <Project>{4674B8C2-876B-4F2A-AB71-BAC968A9B529}</Project>
+ </ProjectReference>
+ <ProjectReference Include="..\xencons_coinst\xencons_coinst.vcxproj">
+ <Project>{6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}</Project>
+ </ProjectReference>
+ <ProjectReference Include="..\xencons_monitor\xencons_monitor.vcxproj">
+ <Project>{8991F0A5-408B-43E0-88CC-9550D4AAE616}</Project>
+ </ProjectReference>
+ <ProjectReference Include="..\xencons_tty\xencons_tty.vcxproj">
+ <Project>{79D98F83-5A2F-4DE6-B62C-530D70B88C3F}</Project>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <FilesToPackage Include="$(DPINST_REDIST)\x86\dpinst.exe"
Condition="'$(Platform)'=='Win32'" />
+ <FilesToPackage Include="$(DPINST_REDIST)\x64\dpinst.exe"
Condition="'$(Platform)'=='x64'" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
diff --git a/vs2017/package/package.vcxproj.user
b/vs2017/package/package.vcxproj.user
new file mode 100644
index 0000000..504b2e3
--- /dev/null
+++ b/vs2017/package/package.vcxproj.user
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <SignMode>TestSign</SignMode>
+ <TestCertificate>..\..\src\xencons.pfx</TestCertificate>
+
<TimeStampServer>http://timestamp.verisign.com/scripts/timstamp.dll</TimeStampServer>
+ </PropertyGroup>
+</Project>
diff --git a/vs2017/targets.props b/vs2017/targets.props
new file mode 100644
index 0000000..d045434
--- /dev/null
+++ b/vs2017/targets.props
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 10 Debug|Win32'">
+ <TargetVersion>Windows10</TargetVersion>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 10 Release|Win32'">
+ <TargetVersion>Windows10</TargetVersion>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 10 Debug|x64'">
+ <TargetVersion>Windows10</TargetVersion>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 10 Release|x64'">
+ <TargetVersion>Windows10</TargetVersion>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|Win32'">
+ <TargetVersion>Windows8</TargetVersion>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|Win32'">
+ <TargetVersion>Windows8</TargetVersion>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|x64'">
+ <TargetVersion>Windows8</TargetVersion>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration"
Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|x64'">
+ <TargetVersion>Windows8</TargetVersion>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ </PropertyGroup>
+</Project>
diff --git a/vs2017/xencons.sln b/vs2017/xencons.sln
new file mode 100644
index 0000000..95702da
--- /dev/null
+++ b/vs2017/xencons.sln
@@ -0,0 +1,122 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xencons",
"xencons\xencons.vcxproj", "{4674B8C2-876B-4F2A-AB71-BAC968A9B529}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xencons_coinst",
"xencons_coinst\xencons_coinst.vcxproj",
"{6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xencons_monitor",
"xencons_monitor\xencons_monitor.vcxproj",
"{8991F0A5-408B-43E0-88CC-9550D4AAE616}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xencons_tty",
"xencons_tty\xencons_tty.vcxproj", "{79D98F83-5A2F-4DE6-B62C-530D70B88C3F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "package",
"package\package.vcxproj", "{8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}"
+ ProjectSection(ProjectDependencies) = postProject
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529} =
{4674B8C2-876B-4F2A-AB71-BAC968A9B529}
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19} =
{6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616} =
{8991F0A5-408B-43E0-88CC-9550D4AAE616}
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F} =
{79D98F83-5A2F-4DE6-B62C-530D70B88C3F}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Windows 10 Debug|Win32 = Windows 10 Debug|Win32
+ Windows 10 Debug|x64 = Windows 10 Debug|x64
+ Windows 10 Release|Win32 = Windows 10 Release|Win32
+ Windows 10 Release|x64 = Windows 10 Release|x64
+ Windows 8 Debug|Win32 = Windows 8 Debug|Win32
+ Windows 8 Debug|x64 = Windows 8 Debug|x64
+ Windows 8 Release|Win32 = Windows 8 Release|Win32
+ Windows 8 Release|x64 = Windows 8 Release|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Debug|Win32.ActiveCfg = Windows 10 Debug|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Debug|Win32.Build.0 = Windows 10 Debug|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Debug|Win32.Deploy.0 = Windows 10 Debug|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Debug|x64.ActiveCfg = Windows 10 Debug|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Debug|x64.Build.0 = Windows 10 Debug|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Debug|x64.Deploy.0 = Windows 10 Debug|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Release|Win32.ActiveCfg = Windows 10 Release|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Release|Win32.Build.0 = Windows 10 Release|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Release|Win32.Deploy.0 = Windows 10 Release|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Release|x64.ActiveCfg = Windows 10 Release|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Release|x64.Build.0 = Windows 10 Release|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 10
Release|x64.Deploy.0 = Windows 10 Release|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Debug|Win32.Deploy.0 = Windows 8 Debug|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Debug|x64.Build.0 = Windows 8 Debug|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Debug|x64.Deploy.0 = Windows 8 Debug|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Release|Win32.Build.0 = Windows 8 Release|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Release|Win32.Deploy.0 = Windows 8 Release|Win32
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Release|x64.ActiveCfg = Windows 8 Release|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Release|x64.Build.0 = Windows 8 Release|x64
+ {4674B8C2-876B-4F2A-AB71-BAC968A9B529}.Windows 8
Release|x64.Deploy.0 = Windows 8 Release|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Debug|Win32.ActiveCfg = Windows 10 Debug|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Debug|Win32.Build.0 = Windows 10 Debug|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Debug|x64.ActiveCfg = Windows 10 Debug|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Debug|x64.Build.0 = Windows 10 Debug|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Release|Win32.ActiveCfg = Windows 10 Release|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Release|Win32.Build.0 = Windows 10 Release|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Release|x64.ActiveCfg = Windows 10 Release|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 10
Release|x64.Build.0 = Windows 10 Release|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Debug|x64.Build.0 = Windows 8 Debug|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Release|Win32.Build.0 = Windows 8 Release|Win32
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Release|x64.ActiveCfg = Windows 8 Release|x64
+ {6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}.Windows 8
Release|x64.Build.0 = Windows 8 Release|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Debug|Win32.ActiveCfg = Windows 10 Debug|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Debug|Win32.Build.0 = Windows 10 Debug|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Debug|x64.ActiveCfg = Windows 10 Debug|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Debug|x64.Build.0 = Windows 10 Debug|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Release|Win32.ActiveCfg = Windows 10 Release|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Release|Win32.Build.0 = Windows 10 Release|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Release|x64.ActiveCfg = Windows 10 Release|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 10
Release|x64.Build.0 = Windows 10 Release|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Debug|x64.Build.0 = Windows 8 Debug|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Release|Win32.Build.0 = Windows 8 Release|Win32
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Release|x64.ActiveCfg = Windows 8 Release|x64
+ {8991F0A5-408B-43E0-88CC-9550D4AAE616}.Windows 8
Release|x64.Build.0 = Windows 8 Release|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Debug|Win32.ActiveCfg = Windows 10 Debug|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Debug|Win32.Build.0 = Windows 10 Debug|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Debug|x64.ActiveCfg = Windows 10 Debug|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Debug|x64.Build.0 = Windows 10 Debug|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Release|Win32.ActiveCfg = Windows 10 Release|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Release|Win32.Build.0 = Windows 10 Release|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Release|x64.ActiveCfg = Windows 10 Release|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 10
Release|x64.Build.0 = Windows 10 Release|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Debug|x64.Build.0 = Windows 8 Debug|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Release|Win32.Build.0 = Windows 8 Release|Win32
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Release|x64.ActiveCfg = Windows 8 Release|x64
+ {79D98F83-5A2F-4DE6-B62C-530D70B88C3F}.Windows 8
Release|x64.Build.0 = Windows 8 Release|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Debug|Win32.ActiveCfg = Windows 10 Debug|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Debug|Win32.Build.0 = Windows 10 Debug|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Debug|x64.ActiveCfg = Windows 10 Debug|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Debug|x64.Build.0 = Windows 10 Debug|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Release|Win32.ActiveCfg = Windows 10 Release|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Release|Win32.Build.0 = Windows 10 Release|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Release|x64.ActiveCfg = Windows 10 Release|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 10
Release|x64.Build.0 = Windows 10 Release|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Debug|x64.Build.0 = Windows 8 Debug|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Release|Win32.Build.0 = Windows 8 Release|Win32
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Release|x64.ActiveCfg = Windows 8 Release|x64
+ {8B5B8F4B-7FF3-4B64-AC4A-5246026217E7}.Windows 8
Release|x64.Build.0 = Windows 8 Release|x64
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/vs2017/xencons/xencons.vcxproj b/vs2017/xencons/xencons.vcxproj
new file mode 100644
index 0000000..d064f96
--- /dev/null
+++ b/vs2017/xencons/xencons.vcxproj
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\configs.props" />
+ <PropertyGroup Label="PropertySheets">
+ <DriverType>WDM</DriverType>
+ <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>
+ <ConfigurationType>Driver</ConfigurationType>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{4674B8C2-876B-4F2A-AB71-BAC968A9B529}</ProjectGuid>
+ </PropertyGroup>
+ <Import Project="..\targets.props" />
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <PropertyGroup>
+ <RunCodeAnalysis>true</RunCodeAnalysis>
+ <EnableInf2cat>false</EnableInf2cat>
+ <IntDir>..\$(ProjectName)\$(ConfigurationName)\$(Platform)\</IntDir>
+ <OutDir>..\$(ConfigurationName)\$(Platform)\</OutDir>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+
<AdditionalIncludeDirectories>$(WindowsSdkDir)\include\km;..\..\include;..\..\include\xen;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+
<PreprocessorDefinitions>__MODULE__="XENCONS";POOL_NX_OPTIN=1;NT_PROCESSOR_GROUPS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+
<DisableSpecificWarnings>4464;4711;4548;4820;4668;4255;6001;6054;28196;30030;30029;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+ <MultiProcessorCompilation>true</MultiProcessorCompilation>
+ <EnablePREfast>true</EnablePREfast>
+ </ClCompile>
+ <ResourceCompile>
+
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ </ResourceCompile>
+ <Link>
+ <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
+
<AdditionalDependencies>$(DDK_LIB_PATH)/Rtlver.lib;$(DDK_LIB_PATH)/libcntpr.lib;$(DDK_LIB_PATH)/aux_klib.lib;$(DDK_LIB_PATH)/ksecdd.lib;$(DDK_LIB_PATH)/procgrp.lib;$(DDK_LIB_PATH)/wdmsec.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ <EnableCOMDATFolding>false</EnableCOMDATFolding>
+ </Link>
+ <Inf>
+ <SpecifyArchitecture>true</SpecifyArchitecture>
+ <SpecifyDriverVerDirectiveVersion>true</SpecifyDriverVerDirectiveVersion>
+
<TimeStamp>$(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION).$(BUILD_NUMBER)</TimeStamp>
+ <EnableVerbose>true</EnableVerbose>
+ </Inf>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
+ <ClCompile>
+
<PreprocessorDefinitions>__i386__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <Inf>
+ <Architecture>x86</Architecture>
+ </Inf>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
+ <ClCompile>
+
<PreprocessorDefinitions>__x86_64__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <Inf>
+ <Architecture>amd64</Architecture>
+ </Inf>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <FilesToPackage Include="$(TargetPath)" />
+ <FilesToPackage Include="$(OutDir)$(TargetName).pdb" />
+ <FilesToPackage Include="@(Inf->'%(CopyOutput)')" Condition="'@(Inf)'!=''"
/>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="../../src/xencons/driver.c" />
+ <ClCompile Include="../../src/xencons/fdo.c" />
+ <ClCompile Include="../../src/xencons/registry.c" />
+ <ClCompile Include="../../src/xencons/stream.c" />
+ <ClCompile Include="../../src/xencons/thread.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <ResourceCompile Include="..\..\src\xencons\xencons.rc" />
+ </ItemGroup>
+ <ItemGroup>
+ <Inf Include="..\xencons.inf" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="..\package\package.vcxproj" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+</Project>
diff --git a/vs2017/xencons/xencons.vcxproj.user
b/vs2017/xencons/xencons.vcxproj.user
new file mode 100644
index 0000000..504b2e3
--- /dev/null
+++ b/vs2017/xencons/xencons.vcxproj.user
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <SignMode>TestSign</SignMode>
+ <TestCertificate>..\..\src\xencons.pfx</TestCertificate>
+
<TimeStampServer>http://timestamp.verisign.com/scripts/timstamp.dll</TimeStampServer>
+ </PropertyGroup>
+</Project>
diff --git a/vs2017/xencons_coinst/xencons_coinst.vcxproj
b/vs2017/xencons_coinst/xencons_coinst.vcxproj
new file mode 100644
index 0000000..fb09087
--- /dev/null
+++ b/vs2017/xencons_coinst/xencons_coinst.vcxproj
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\configs.props" />
+ <PropertyGroup Label="PropertySheets">
+ <DriverType>WDM</DriverType>
+ <PlatformToolset>WindowsApplicationForDrivers10.0</PlatformToolset>
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{6CC9B8DD-A5AE-427D-8157-E91D21DD7E19}</ProjectGuid>
+ </PropertyGroup>
+ <Import Project="..\targets.props" />
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <PropertyGroup>
+ <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>
+ <IncludePath>..\..\include;$(IncludePath)</IncludePath>
+ <RunCodeAnalysis>true</RunCodeAnalysis>
+ <EnableInf2cat>false</EnableInf2cat>
+ <IntDir>..\$(ProjectName)\$(ConfigurationName)\$(Platform)\</IntDir>
+ <OutDir>..\$(ConfigurationName)\$(Platform)\</OutDir>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+
<PreprocessorDefinitions>__MODULE__="XENCONS_COINST";%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+
<DisableSpecificWarnings>4127;4548;4711;4820;4668;4255;6001;6054;28196;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+ <MultiProcessorCompilation>true</MultiProcessorCompilation>
+ <EnablePREfast>true</EnablePREfast>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='true'">MultiThreadedDebug</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='false'">MultiThreaded</RuntimeLibrary>
+ </ClCompile>
+ <Link>
+
<ModuleDefinitionFile>../../src/coinst/xencons_coinst.def</ModuleDefinitionFile>
+
<AdditionalDependencies>setupapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
+ <ClCompile>
+
<PreprocessorDefinitions>__i386__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
+ <ClCompile>
+
<PreprocessorDefinitions>__x86_64__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <FilesToPackage Include="$(TargetPath)" />
+ <FilesToPackage Include="$(OutDir)$(TargetName).pdb" />
+ <FilesToPackage Include="@(Inf->'%(CopyOutput)')" Condition="'@(Inf)'!=''"
/>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\src\coinst\coinst.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="..\..\src\coinst\xencons_coinst.def" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+</Project>
diff --git a/vs2017/xencons_coinst/xencons_coinst.vcxproj.user
b/vs2017/xencons_coinst/xencons_coinst.vcxproj.user
new file mode 100644
index 0000000..a427c80
--- /dev/null
+++ b/vs2017/xencons_coinst/xencons_coinst.vcxproj.user
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <SignMode>TestSign</SignMode>
+ <TestCertificate>..\..\src\xencons.pfx</TestCertificate>
+
<TimeStampServer>http://timestamp.verisign.com/scripts/timstamp.dll</TimeStampServer>
+ </PropertyGroup>
+</Project>
diff --git a/vs2017/xencons_monitor/xencons_monitor.vcxproj
b/vs2017/xencons_monitor/xencons_monitor.vcxproj
new file mode 100644
index 0000000..05b5e45
--- /dev/null
+++ b/vs2017/xencons_monitor/xencons_monitor.vcxproj
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="14.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\configs.props" />
+ <PropertyGroup Label="PropertySheets">
+ <CharacterSet>MultiByte</CharacterSet>
+ <PlatformToolset>WindowsApplicationForDrivers10.0</PlatformToolset>
+ <ConfigurationType>Application</ConfigurationType>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{8991F0A5-408B-43E0-88CC-9550D4AAE616}</ProjectGuid>
+ </PropertyGroup>
+ <Import Project="..\targets.props" />
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <PropertyGroup>
+ <IncludePath>$(IncludePath)</IncludePath>
+ <RunCodeAnalysis>true</RunCodeAnalysis>
+ <EnableInf2cat>false</EnableInf2cat>
+ </PropertyGroup>
+ <PropertyGroup>
+ <CustomBuildAfterTargets>Link</CustomBuildAfterTargets>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+
<AdditionalIncludeDirectories>$(SolutionDir)..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+
<PreprocessorDefinitions>WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;__MODULE__="XENCONS_MONITOR";%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+
<DisableSpecificWarnings>4127;4711;4548;4820;4668;4255;6001;6054;28196;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+ <MultiProcessorCompilation>true</MultiProcessorCompilation>
+ <EnablePREfast>true</EnablePREfast>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='true'">MultiThreadedDebug</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='false'">MultiThreaded</RuntimeLibrary>
+ </ClCompile>
+ <Link>
+
<AdditionalDependencies>wtsapi32.lib;cfgmgr32.lib;setupapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ </Link>
+ <ResourceCompile>
+
<AdditionalIncludeDirectories>$(SolutionDir)..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ </ResourceCompile>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
+ <ClCompile>
+
<PreprocessorDefinitions>__i386__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <CustomBuildStep>
+ <Outputs>$(TargetDir)$(TargetName).dll</Outputs>
+ <Inputs>$(IntDir)$(TargetName).res</Inputs>
+ <Command>link -machine:x86 -dll -noentry -out:%(Outputs)
%(Inputs)</Command>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
+ <ClCompile>
+
<PreprocessorDefinitions>__x86_64__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ <CustomBuildStep>
+ <Outputs>$(TargetDir)$(TargetName).dll</Outputs>
+ <Inputs>$(IntDir)$(TargetName).res</Inputs>
+ <Command>link -machine:x64 -dll -noentry -out:%(Outputs)
%(Inputs)</Command>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <FilesToPackage Include="$(TargetPath)" />
+ <FilesToPackage Include="$(OutDir)$(TargetName).pdb" />
+ <FilesToPackage Include="$(OutDir)$(TargetName).dll" />
+ <FilesToPackage Include="@(Inf->'%(CopyOutput)')" Condition="'@(Inf)'!=''"
/>
+ </ItemGroup>
+ <ItemGroup>
+ <MessageCompile Include="..\..\src\monitor\messages.mc" />
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\src\monitor\monitor.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <ResourceCompile Include="..\..\src\monitor\xencons_monitor.rc" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+</Project>
diff --git a/vs2017/xencons_monitor/xencons_monitor.vcxproj.user
b/vs2017/xencons_monitor/xencons_monitor.vcxproj.user
new file mode 100644
index 0000000..a427c80
--- /dev/null
+++ b/vs2017/xencons_monitor/xencons_monitor.vcxproj.user
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <SignMode>TestSign</SignMode>
+ <TestCertificate>..\..\src\xencons.pfx</TestCertificate>
+
<TimeStampServer>http://timestamp.verisign.com/scripts/timstamp.dll</TimeStampServer>
+ </PropertyGroup>
+</Project>
diff --git a/vs2017/xencons_tty/xencons_tty.vcxproj
b/vs2017/xencons_tty/xencons_tty.vcxproj
new file mode 100644
index 0000000..135126c
--- /dev/null
+++ b/vs2017/xencons_tty/xencons_tty.vcxproj
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="14.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\configs.props" />
+ <PropertyGroup Label="PropertySheets">
+ <CharacterSet>MultiByte</CharacterSet>
+ <PlatformToolset>WindowsApplicationForDrivers10.0</PlatformToolset>
+ <ConfigurationType>Application</ConfigurationType>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{79D98F83-5A2F-4DE6-B62C-530D70B88C3F}</ProjectGuid>
+ </PropertyGroup>
+ <Import Project="..\targets.props" />
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <PropertyGroup>
+ <IncludePath>$(IncludePath)</IncludePath>
+ <RunCodeAnalysis>true</RunCodeAnalysis>
+ <EnableInf2cat>false</EnableInf2cat>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+
<AdditionalIncludeDirectories>$(SolutionDir)..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+
<PreprocessorDefinitions>WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+
<DisableSpecificWarnings>4127;4711;4548;4820;4668;4255;6001;6054;28196;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+ <MultiProcessorCompilation>true</MultiProcessorCompilation>
+ <EnablePREfast>true</EnablePREfast>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='true'">MultiThreadedDebug</RuntimeLibrary>
+ <RuntimeLibrary
Condition="'$(UseDebugLibraries)'=='false'">MultiThreaded</RuntimeLibrary>
+ </ClCompile>
+ <Link>
+
<AdditionalDependencies>setupapi.lib;userenv.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ </Link>
+ <ResourceCompile>
+
<AdditionalIncludeDirectories>$(SolutionDir)..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ </ResourceCompile>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
+ <ClCompile>
+
<PreprocessorDefinitions>__i386__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
+ <ClCompile>
+
<PreprocessorDefinitions>__x86_64__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ </ClCompile>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <FilesToPackage Include="$(TargetPath)" />
+ <FilesToPackage Include="$(OutDir)$(TargetName).pdb" />
+ <FilesToPackage Include="@(Inf->'%(CopyOutput)')" Condition="'@(Inf)'!=''"
/>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\src\tty\tty.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <ResourceCompile Include="..\..\src\tty\xencons_tty.rc" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+</Project>
diff --git a/vs2017/xencons_tty/xencons_tty.vcxproj.user
b/vs2017/xencons_tty/xencons_tty.vcxproj.user
new file mode 100644
index 0000000..a427c80
--- /dev/null
+++ b/vs2017/xencons_tty/xencons_tty.vcxproj.user
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <SignMode>TestSign</SignMode>
+ <TestCertificate>..\..\src\xencons.pfx</TestCertificate>
+
<TimeStampServer>http://timestamp.verisign.com/scripts/timstamp.dll</TimeStampServer>
+ </PropertyGroup>
+</Project>
--
2.5.3
_______________________________________________
win-pv-devel mailing list
win-pv-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/win-pv-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |