How to install MSBuild on OS X and Linux?(如何在 OS X 和 Linux 上安装 MSBuild?)
问题描述
我希望在我的 Linux 笔记本电脑上安装 MSBuild,以便构建我的 C# OSS 项目.我该怎么做呢?我遇到了一些指南,例如 this 建议安装 MSBuild
NuGet 包,但它似乎不是官方的或积极维护的.
I'm looking to install MSBuild on my Linux laptop so I can build a C# OSS project of mine. How exactly would I go about doing this? I've come across a few guides such as this which suggest installing the MSBuild
NuGet package, but it doesn't seem official or actively maintained.
是否有可以安装 MSBuild 的官方包源?
Is there an official package source I can install MSBuild from?
推荐答案
有,CoreFX 团队 作为 MyGet 提要.要安装,请在终端上运行:
Yes, there is such a package hosted by the CoreFX team as a MyGet feed. To install, run this at a terminal:
#!/bin/sh
packageid="Microsoft.Build.Mono.Debug"
version="14.1.0.0-prerelease" # update as needed
mono path/to/nuget.exe install $packageid -Version
$version -Source "https://www.myget.org/F/dotnet-buildtools/"
# run MSBuild
mono $packageid.$version/lib/MSBuild.exe Foo.sln
从技术上讲,这应该仅用于构建 .NET Core 存储库,但我会将其作为非官方发布者的替代方案.
Technically this should be used only for building the .NET Core repos, but I'll take it as an alternative to an unofficial publisher.
来源.
请注意,这仅适用于您的 Mono 版本为 4.0.1 或更高版本.
Note that this will only work if your version of Mono is 4.0.1 or above.
这篇关于如何在 OS X 和 Linux 上安装 MSBuild?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 OS X 和 Linux 上安装 MSBuild?
基础教程推荐
- MS Visual Studio .NET 的替代品 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01