Skip to content

Commit b5c2845

Browse files
committed
use mdbuild
1 parent 65075b8 commit b5c2845

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21+
- name: Setup MSBuild
22+
uses: microsoft/setup-msbuild@v1.3.1
23+
2124
- name: Setup .NET
2225
uses: actions/setup-dotnet@v3
2326
with:
@@ -26,8 +29,9 @@ jobs:
2629
- name: Restore dependencies
2730
run: dotnet restore
2831

29-
- name: Build
30-
run: dotnet build --configuration Release --no-restore
32+
- name: Build with MSBuild
33+
run: |
34+
msbuild RomM.csproj /p:Configuration=Release /p:Platform="Any CPU" /p:RestorePackages=false
3135
3236
- name: Download Playnite Toolbox
3337
run: |

0 commit comments

Comments
 (0)