如何选择使用 C# 的 CodeDom 编译器的目标框架?
因此,我有一个用 C# 编写的 CodeDOM 编译器,它应该根据其资源之一编译另一个应用程序。如何更改资源(或编译器输出的可执行文件)的目标 .NET 框架?
So I have a CodeDOM compiler written in C# that's supposed to compile another application based on one of its resources. How would I change the target .NET framework of the resource (or of the outputted executable of the compiler)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下构造函数将选项传递给编译器:
You could pass options to the compiler using the following constructor:
您需要在编译器的设置字典中指定它,例如:
毫不奇怪,Google 也已经提出了几个这样的示例; 此处和 这里。
You would need to specify it in a dictionary of settings for the compiler, such as:
Unsurprisingly, Google already brings up a couple of examples of this, too; here and here.