diff options
| -rw-r--r-- | .github/Build-with-GitHub.md | 4 | ||||
| -rw-r--r-- | README.md | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/Build-with-GitHub.md b/.github/Build-with-GitHub.md index 8fe67c5f..c4a10962 100644 --- a/.github/Build-with-GitHub.md +++ b/.github/Build-with-GitHub.md @@ -2,10 +2,10 @@ If you use GitHub to host your code, you can leverage [GitHub Actions](https://docs.github.com/en/actions) to create automated workflows to build your driver projects. -`windows-2022` runner (provided by `windows-latest`) is configured with Windows Driver Kit version 22H2 and Visual Studio 2022 off the box, so most solutions can be built directly running `msbuild` directly. +`windows-2022` runner (provided by `windows-latest`) is configured with Windows Driver Kit version 22H2 and Visual Studio 2022 off the box, so most solutions can be built by running `msbuild` directly. ```yaml -name: Build all driver samples +name: Build driver solution on: push: branches: @@ -46,6 +46,8 @@ If you're writing your first driver, use these exercises to get started. Each ex [Write a KMDF driver based on a template](https://docs.microsoft.com/windows-hardware/drivers/gettingstarted/writing-a-kmdf-driver-based-on-a-template) +[Use GitHub Actions to build a simple driver project](.github/Build-with-GitHub.md) + # Microsoft Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. |
