-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(preparing for CI)
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Install Dependencies | ||
description: "" | ||
|
||
inputs: | ||
dotnet-version: | ||
description: 'Installs and sets the .NET SDK Version' | ||
required: false | ||
default: '8.0.x' | ||
sdkVersion: | ||
description: 'The version of the Windows Sdk' | ||
required: false | ||
default: '22621' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
# Install .NET | ||
- name: Setup .NET ${{ inputs.dotnet-version }} | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: '${{ inputs.dotnet-version }}' | ||
|
||
# Install Windows SDK | ||
- name: Install Windows SDK ${{ inputs.sdkVersion }} | ||
shell: pwsh | ||
if: ${{ runner.os == 'Windows' }} | ||
run: .\.github\Install-WindowsSdkISO.ps1 ${{ inputs.sdkVersion }} |