Skip to content

Commit

Permalink
ci: fix build workflow
Browse files Browse the repository at this point in the history
Correct the msbuild cli option.

References: Eppie-io#332
  • Loading branch information
al-kau committed Sep 23, 2024
1 parent cfad9e5 commit 1b3887b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ jobs:
$configuration='${{ matrix.build.configuration }}'
$extra_options=$('${{ matrix.build.extra }}' -split '\s+')
$framework='${{ matrix.build.framework }}'
$framework_option=$( if($framework) {"-property:TargetFramwork=$framework"} else {""} )
$framework_option=$( if($framework) {"-property:TargetFramework=$framework"} else {""} )
msbuild -target:Rebuild -restore:True -property:Configuration=$configuration $framework_option $extra_options $project

0 comments on commit 1b3887b

Please sign in to comment.