Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Christoforides <alexis@thenull.net>2017-03-10 17:31:38 +0300
committerAlexis Christoforides <alexis@thenull.net>2017-03-10 17:31:38 +0300
commiteb0e42349993a07090b1eca62604dde8b1e2f83b (patch)
treea5b47e337dbc2b725b860ade311ea450691e4fc4 /packaging/MacSDK
parent814d37f556d2487f9176890a5c404ba384db92c7 (diff)
[MacSDK] Use MSBuild to build IronPython/IronRuby. We are deprecating xbuild
Diffstat (limited to 'packaging/MacSDK')
-rw-r--r--packaging/MacSDK/ironlangs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/MacSDK/ironlangs.py b/packaging/MacSDK/ironlangs.py
index 85a0eb4c6dc..294cd3d3057 100644
--- a/packaging/MacSDK/ironlangs.py
+++ b/packaging/MacSDK/ironlangs.py
@@ -23,9 +23,9 @@ class IronLanguagesPackage(GitHubTarballPackage):
self.ironpython = os.path.join(
self.workspace, 'ironpython', 'bin') + os.sep
self.sh(
- 'xbuild /p:PublicSign=false /p:Configuration=Release /p:OutDir="%{ironruby}" Solutions/Ruby.sln')
+ 'msbuild /p:PublicSign=false /p:Configuration=Release /p:OutDir="%{ironruby}" Solutions/Ruby.sln')
self.sh(
- 'xbuild /p:PublicSign=false /p:Configuration=Release /p:OutDir="%{ironpython}" Solutions/IronPython.Mono.sln')
+ 'msbuild /p:PublicSign=false /p:Configuration=Release /p:OutDir="%{ironpython}" Solutions/IronPython.Mono.sln')
def install_ruby_scripts(self, path, installdir):
for cmd, ext in map(os.path.splitext, os.listdir(path)):