C# 控制台程序的 Makefile
如何编写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以简单地使用 C# 编译器,并为其提供正确的参数。
在这里您可以找到示例
根据MSDN:
或者直接安装 .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:
Or simply install the .NET Framework (thank to the @Alexei Levenkov).
如果您安装了 Visual Studio,只需创建一个批处理文件并调用
或使用 MsBuild 如示例中提供的。
或使用示例中提供的 csc 。
If you have a Visual Studio installed just create a batch file and call
Or use MsBuild as provided in sample.
or use csc as provided in sample.