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?


- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01