Skip to content

Commit

Permalink
chore: Use msbuild for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban authored Apr 19, 2024
1 parent 15f5be3 commit 9ba7d4b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,13 @@ jobs:
- name: Validate 5.2 Samples app
run: |
& dotnet build -c Release /r /bl:.\logs\sample-5.2.binlog samples\5.2\Uno52ResizetizerTests\Uno52ResizetizerTests.sln /p:AotAssemblies=false /p:WasmShellILLinkerEnabled=false
$msbuild = vswhere -latest -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe
& $msbuild /r -p=Configuration=Release /bl:.\logs\sample-5.2.binlog samples\5.2\Uno52ResizetizerTests\Uno52ResizetizerTests.sln /p:AotAssemblies=false /p:WasmShellILLinkerEnabled=false
- name: Validate 5.2 Samples app (incremental)
run: |
& dotnet build -c Release /r /bl:.\logs\sample-5.2-incremental.binlog samples\5.2\Uno52ResizetizerTests\Uno52ResizetizerTests.sln /p:AotAssemblies=false /p:WasmShellILLinkerEnabled=false
$msbuild = vswhere -latest -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe
& $msbuild /r -p=Configuration=Release /bl:.\logs\sample-5.2-incremental.binlog samples\5.2\Uno52ResizetizerTests\Uno52ResizetizerTests.sln /p:AotAssemblies=false /p:WasmShellILLinkerEnabled=false
- name: Validate 5.1 Samples app
run: |
Expand Down

0 comments on commit 9ba7d4b

Please sign in to comment.