Skip to content

Commit

Permalink
Merge pull request #36 from gyk4j/20231222-ci-force-msbuild-path
Browse files Browse the repository at this point in the history
Specify a MSBuild.exe that supposedly should build .NET 3.5 projects
  • Loading branch information
gyk4j authored Dec 22, 2023
2 parents 7157900 + 027854c commit 271006a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:

- name: Build solution
# run: msbuild $env:Base_Directory\$env:Solution_Name -t:rebuild -property:Configuration=$env:Configuration
run: msbuild Wreck.sln -t:Rebuild -p:Configuration=Release -p:Platform=x86 -p:TargetFrameworkVersion=v2.0
run: |
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\"
msbuild Wreck.sln -t:Rebuild -p:Configuration=Release -p:Platform=x86 -p:TargetFrameworkVersion=v2.0
#run: pwd && ls
env:
Configuration: ${{ matrix.configuration }}
Expand Down

0 comments on commit 271006a

Please sign in to comment.