是否有 CLR 版本的 ac# 预编译器定义
我需要根据 CLR 版本有条件地编译代码。
例如,有一段代码我需要仅在 CLR 2 (.NET 3.5 VS2008) 中编译,而不是在 CLR 4 (.NET 4 VS2010) 中编译
当前 CLR 版本是否有可以在 #if 子句中使用的预编译器指令?
谢谢。
I need to compile code conditionally by the CLR version.
e.g there's a code that I need to compile only in CLR 2 (.NET 3.5 VS2008) and not in CLR 4 (.NET 4 VS2010)
Is there a precompiler directive for the current CLR version that I can use inside an #if clause?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
据我所知,情况并非如此。
尝试使用您自己的,例如:
然后您可以在 Visual Studio 的项目属性窗口或 csc 命令行参数中定义 CLR_V2 和/或 CLR_V4。
Not as I know.
try use your own one, such like:
And then you can define CLR_V2 and/or CLR_V4 in project properties window of Visual Studio, or csc command line arguments.
您始终可以在 MSBuild 脚本中添加一些内容来检查 CLR 版本,然后有条件地定义预处理器符号并将其传递给编译器,该编译器可以使用 #if 在代码内进行测试。
You could always add something to your MSBuild script that checks the CLR version, then conditionally defines and passes in a preprocessor symbol to the compiler that can be tested inside the code with an #if.
是的,有条件编译指令,它们看起来只是就像 C 预处理器的东西
编辑:完全误读了这个问题 - 休息一下的时间
Yes there are conditional compilation directives they look just like C preprocessor stuff
edit: completely misread that question - time for a break
根据此处,答案是否。然而,我们使用的一个技巧是将版本特定的代码放入运行时加载的程序集中。然后,您可以通过 获取运行时 CLR 的版本System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()。
版本特定的代码是使用 C#3.5 及以上版本中提供的目标工具进行编译的。
According to here the answer is no. However one trick we use is to put the version specific code into assemblies that are loaded at runtime. You can then get the version of the CLR at runtime by System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory().
The version specific code is compiled using the targeting facility available from the C#3.5 onwards.