diff options
| author | Barry Golden <[email protected]> | 2019-09-25 19:35:57 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-09-25 19:35:57 -0700 |
| commit | d2a01860208bcce9f4777d54bec3c59c4c02e969 (patch) | |
| tree | be2892ff05b3308b559e18474f1b1645582cb379 /storage/msdsm | |
| parent | 2e237713e298495b141560a5e7c76d6b1efa0153 (diff) | |
Update README.md (#425)8758187580875798757887577875768757587574875738757287571875708756987568875678756687565875648756387562
Diffstat (limited to 'storage/msdsm')
| -rw-r--r-- | storage/msdsm/README.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/storage/msdsm/README.md b/storage/msdsm/README.md index 06fa8759..42ba9bc3 100644 --- a/storage/msdsm/README.md +++ b/storage/msdsm/README.md @@ -21,8 +21,11 @@ You build a driver the same way you build any project or solution in Visual Stud The default Solution build configuration is **Debug** and **Win32**. 1. Open the driver project or solution in Visual Studio (find *samplename*.sln or *samplename*.vcxproj). + 1. Right-click the solution in the **Solutions Explorer** and select **Configuration Manager**. + 1. From the **Configuration Manager**, select the **Active Solution Configuration** (for example, Debug or Release) and the **Active Solution Platform** (for example, Win32) that correspond to the type of build you are interested in. + 1. From the Build menu, click **Build Solution** (Ctrl+Shift+B). ## Building a Driver Using the Command Line (MSBuild) @@ -30,9 +33,10 @@ The default Solution build configuration is **Debug** and **Win32**. You can build a driver from the command line using the Visual Studio Command Prompt window and the Microsoft Build Engine (MSBuild.exe) Previous versions of the WDK used the Windows Build utility (Build.exe) and provided separate build environment windows for each of the supported build configurations. You can now use the Visual Studio Command Prompt window for all build configurations. 1. Open a Visual Studio Command Prompt window at the **Start** screen. From this window you can use MsBuild.exe to build any Visual Studio project by specifying the project (.VcxProj) or solutions (.Sln) file. + 1. Navigate to the project directory and enter the **MSbuild** command for your target. For example, to perform a clean build of a Visual Studio driver project called *filtername*.vcxproj, navigate to the project directory and enter the following MSBuild command: - **msbuild /t:clean /t:build .\\<*samplename*>.vcxproj**. + `msbuild /t:clean /t:build .\<samplename>.vcxproj` ## Installation and Operation |
