Sample Code
windows driver samples/ Toaster Sample Driver/ C++/ Package/ package.VcxProj/
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Win8.1 Debug|Win32"> <Configuration>Win8.1 Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win8.1 Release|Win32"> <Configuration>Win8.1 Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win8 Debug|Win32"> <Configuration>Win8 Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win8 Release|Win32"> <Configuration>Win8 Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win7 Debug|Win32"> <Configuration>Win7 Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win7 Release|Win32"> <Configuration>Win7 Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win8.1 Debug|x64"> <Configuration>Win8.1 Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win8.1 Release|x64"> <Configuration>Win8.1 Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win8 Debug|x64"> <Configuration>Win8 Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win8 Release|x64"> <Configuration>Win8 Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win7 Debug|x64"> <Configuration>Win7 Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Win7 Release|x64"> <Configuration>Win7 Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> </ItemGroup> <PropertyGroup Label="PropertySheets"> <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset> <ConfigurationType>Utility</ConfigurationType> <DriverType>Package</DriverType> <DisableFastUpToDateCheck>true</DisableFastUpToDateCheck> <Configuration>Win8.1 Debug</Configuration> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Label="Globals"> <ProjectGuid>{3BE8D728-6C21-4C7E-82AB-A33B5F23A45D}</ProjectGuid> <SampleGuid>{7BD9E3DD-BA97-486E-A897-85A595230571}</SampleGuid> <RootNamespace>$(MSBuildProjectName)</RootNamespace> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 Debug|Win32'" Label="Configuration"> <TargetVersion>WindowsV6.3</TargetVersion> <UseDebugLibraries>true</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 Release|Win32'" Label="Configuration"> <TargetVersion>WindowsV6.3</TargetVersion> <UseDebugLibraries>false</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8 Debug|Win32'" Label="Configuration"> <TargetVersion>Windows8</TargetVersion> <UseDebugLibraries>true</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8 Release|Win32'" Label="Configuration"> <TargetVersion>Windows8</TargetVersion> <UseDebugLibraries>false</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win7 Debug|Win32'" Label="Configuration"> <TargetVersion>Windows7</TargetVersion> <UseDebugLibraries>true</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win7 Release|Win32'" Label="Configuration"> <TargetVersion>Windows7</TargetVersion> <UseDebugLibraries>false</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 Debug|x64'" Label="Configuration"> <TargetVersion>WindowsV6.3</TargetVersion> <UseDebugLibraries>true</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 Release|x64'" Label="Configuration"> <TargetVersion>WindowsV6.3</TargetVersion> <UseDebugLibraries>false</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8 Debug|x64'" Label="Configuration"> <TargetVersion>Windows8</TargetVersion> <UseDebugLibraries>true</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8 Release|x64'" Label="Configuration"> <TargetVersion>Windows8</TargetVersion> <UseDebugLibraries>false</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win7 Debug|x64'" Label="Configuration"> <TargetVersion>Windows7</TargetVersion> <UseDebugLibraries>true</UseDebugLibraries> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win7 Release|x64'" Label="Configuration"> <TargetVersion>Windows7</TargetVersion> <UseDebugLibraries>false</UseDebugLibraries> </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> <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> <EnableDeployment>False</EnableDeployment> <ImportToStore>False</ImportToStore> <InstallMode>None</InstallMode> <HardwareIdString /> <CommandLine /> <ScriptPath /> <DeployFiles /> <ScriptName /> <ScriptDeviceQuery>%PathToInf%</ScriptDeviceQuery> <EnableVerifier>False</EnableVerifier> <AllDrivers>False</AllDrivers> <VerifyProjectOutput>True</VerifyProjectOutput> <VerifyDrivers /> <VerifyFlags>133563</VerifyFlags> </PropertyGroup> <ItemDefinitionGroup> </ItemDefinitionGroup> <ItemGroup> <!--Inf Include="DriverInf.inv" /--> <FilesToPackage Include="@(Inf->'%(CopyOutput)')" Condition="'@(Inf)'!=''" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\classinstaller\tostrcls.vcxproj"> <Project>{D83F728B-4530-4AD7-A303-C8C7C8258689}</Project> </ProjectReference> <ProjectReference Include="..\kmdf\bus\dynamic\dynambus.vcxproj"> <Project>{BDAA001F-8952-48DB-BFEC-D12A0A754DA0}</Project> </ProjectReference> <ProjectReference Include="..\kmdf\bus\static\StatBus.vcxproj"> <Project>{2AB985E0-938B-4E1C-8901-9906BDB22A53}</Project> </ProjectReference> <ProjectReference Include="..\kmdf\filter\generic\filter.vcxproj"> <Project>{558FC2A0-B261-4B73-B815-56898FF87D9B}</Project> </ProjectReference> <ProjectReference Include="..\kmdf\filter\sideband\filter.vcxproj"> <Project>{30599A65-7421-47F4-9F56-A89C32932F2A}</Project> </ProjectReference> <ProjectReference Include="..\kmdf\func\featured\wdffeatured.vcxproj"> <Project>{21A93089-5F5E-43D9-8ED7-0B7C06DE2504}</Project> </ProjectReference> <ProjectReference Include="..\kmdf\func\simple\wdfsimple.vcxproj"> <Project>{9BB91810-B227-4D97-A8D2-B8847296103F}</Project> </ProjectReference> <ProjectReference Include="..\kmdf\toastmon\wdftoastmon.vcxproj"> <Project>{A501D2B2-9261-47CB-9F2A-451F1CB6C7F2}</Project> </ProjectReference> <ProjectReference Include="..\umdf\func\WUDFToaster.vcxproj"> <Project>{EB2BB407-D52C-46F3-86B2-7046B9AAF84F}</Project> </ProjectReference> <ProjectReference Include="..\umdf\Toastmon\WUDFToastMon.vcxproj"> <Project>{CEF783AA-2672-4F56-873D-0988F9D77911}</Project> </ProjectReference> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> </Project>
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials