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 65075b8 commit b5c2845Copy full SHA for b5c2845
1 file changed
.github/workflows/build.yml
@@ -18,6 +18,9 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
21
+ - name: Setup MSBuild
22
+ uses: microsoft/setup-msbuild@v1.3.1
23
+
24
- name: Setup .NET
25
uses: actions/setup-dotnet@v3
26
with:
@@ -26,8 +29,9 @@ jobs:
29
- name: Restore dependencies
27
30
run: dotnet restore
28
31
- - name: Build
- 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
35
36
- name: Download Playnite Toolbox
37
run: |
0 commit comments