使用 Mono 从 Linux 终端构建 C# 控制台项目
我在我的 Ubuntu 机器上安装了 Mono Develop。如何从终端构建我的 C# 控制台项目。我的目标是编写一个Makefile。
我希望找出相当于:
msbuild MyProject.csproj /p:OutputPath=%~dp0
I have Mono Develop installed on my Ubuntu machine. How could I build my C# console project from terminal. My objective is to write a Makefile.
I wish to find out the equivalent of:
msbuild MyProject.csproj /p:OutputPath=%~dp0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 xbuild 构建 sln 或 csproj 文件。 xbuild 与标准单声道安装捆绑在一起。
You can use xbuild to build sln or csproj files. xbuild is bundled with a standard mono install.
您可以直接调用 dmcs,即 .NET 4 Mono 编译器。有关详细信息,请参阅 CSharp 编译器页面。
You can call
dmcs
, which is the .NET 4 Mono compiler, directly. For details, see the CSharp Compiler page.