Fix DYNCALL value type parameters to follow Windows x64 ABI.
[mono-project.git] / packaging / MacSDK / msbuild.py
blob0573c6038aaf14ee35092ff9371873844cece547
1 import fileinput
3 class MSBuild (GitHubPackage):
4 def __init__ (self):
5 GitHubPackage.__init__ (self, 'mono', 'msbuild', '15', # note: fix scripts/ci/run-test-mac-sdk.sh when bumping the version number
6 revision = '49a614cda8cedbc6b42e37d49e40cc89fbdac4fd')
8 def build (self):
9 self.sh ('./build.sh -host mono -configuration Release -skipTests')
10 self.sh ('zip msbuild-bin-logs.zip artifacts/Release-MONO/log/*')
12 def install (self):
13 # use the bootstrap msbuild as the system might not have one available!
14 self.sh ('./artifacts/mono-msbuild/msbuild mono/build/install.proj /p:MonoInstallPrefix=%s /p:Configuration=Release-MONO /p:IgnoreDiffFailure=true' % self.staged_prefix)
16 MSBuild ()