Bump nuget.exe to v6.2.1
[mono-project.git] / packaging / MacSDK / msbuild.py
blobee2ef1c980354b8ae0108b6c055968573693b6fe
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 = '63458bd6cb3a98b5a062bb18bd51ffdea4aa3001')
8 def build (self):
9 try:
10 self.sh ('./eng/cibuild_bootstrapped_msbuild.sh --host_type mono --configuration Release --skip_tests')
11 finally:
12 self.sh ('find artifacts stage1 -wholename \'*/log/*\' -type f -exec zip msbuild-bin-logs.zip {} \+')
14 def install (self):
15 # use the bootstrap msbuild as the system might not have one available!
16 self.sh ('./stage1/mono-msbuild/msbuild mono/build/install.proj /p:MonoInstallPrefix=%s /p:Configuration=Release-MONO /p:IgnoreDiffFailure=true' % self.staged_prefix)
18 MSBuild ()