We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43bfb2e commit 7ff9582Copy full SHA for 7ff9582
.github/workflows/main.yml
@@ -15,6 +15,11 @@ jobs:
15
with:
16
fetch-depth: 0
17
18
+ - name: Install Specific MSBuild Version
19
+ run: |
20
+ # Add commands here to install the specific version of MSBuild
21
+ # or Visual Studio Build Tools that matches your local environment
22
+
23
- name: Install Premake
24
run: |
25
Invoke-WebRequest -Uri "https://github.com/premake/premake-core/releases/download/v5.0.0-alpha16/premake-5.0.0-alpha16-windows.zip" -OutFile "premake.zip"
@@ -24,6 +29,10 @@ jobs:
29
- name: Setup MSBuild
30
uses: microsoft/setup-msbuild@v1.1
26
31
32
+ - name: Print MSBuild Version
33
34
+ msbuild -version
35
27
36
- name: Run Premake for Visual Studio
28
37
run: C:\tools\premake5.exe vs2019
38
0 commit comments