Skip to content

Commit f43d919

Browse files
committed
fix: different framework directory for x86
1 parent 9368715 commit f43d919

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh
22
cd ./Windows/C#/HsvScreensaver/
3-
msbuild="/c/Windows/Microsoft.NET/Framework64/v4.0.30319/MSBuild.exe"
4-
$msbuild /property:Configuration=Release /property:Platform=x64 HsvScreensaver.csproj
5-
$msbuild /property:Configuration=Release /property:Platform=x86 HsvScreensaver.csproj
3+
msbuild64="/c/Windows/Microsoft.NET/Framework64/v4.0.30319/MSBuild.exe"
4+
msbuild86="/c/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe"
5+
$msbuild64 /property:Configuration=Release /property:Platform=x64 HsvScreensaver.csproj
6+
$msbuild86 /property:Configuration=Release /property:Platform=x86 HsvScreensaver.csproj

0 commit comments

Comments
 (0)