C# 控制台程序的 Makefile

发布于 2024-12-04 17:16:19 字数 86 浏览 0 评论 0原文

如何编写 Makefile (gnu make) 来编译具有多个文件的 C# 控制台项目。我知道还有其他构建工具,但我的课程要求迫使我提交 makefile。

How can I write a Makefile (gnu make) to compile a C# console project that has several files. I understand that there are other build tools, but my course requirements force me to submit a makefile.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心欲静而疯不止 2024-12-11 17:16:19

您可以简单地使用 C# 编译器,并为其提供正确的参数。

在这里您可以找到示例

根据MSDN

如果您使用的计算机仅具有 Windows 软件开发工具包 (SDK),
如果您使用SDK 命令提示符,则可以在命令行中使用 C# 编译器,即
可从 Microsoft .NET Framework SDK 菜单选项获取。

或者直接安装 .NET Framework(感谢 @Alexei Levenkov)。

You can simply use the compiler for the C#, with providing right arguments to it.

Here you can find examples

According to MSDN:

If you are working on a computer that only has the Windows Software Development Kit (SDK),
you can use the C# compiler at the command line if you use the SDK Command Prompt, which is
available from the Microsoft .NET Framework SDK menu option.

Or simply install the .NET Framework (thank to the @Alexei Levenkov).

电影里的梦 2024-12-11 17:16:19

如果您安装了 Visual Studio,只需创建一个批处理文件并调用

devenv your_project_complete_path

或使用 MsBuild 如示例中提供的。

或使用示例中提供的 csc

If you have a Visual Studio installed just create a batch file and call

devenv your_project_complete_path

Or use MsBuild as provided in sample.

or use csc as provided in sample.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文