NET_4_0 所以我应该同时定-6ren">
gpt4 book ai didi

c - 如果目标 .NET 运行时是 4.0 或更高版本,如何在编译时检测?

转载 作者:太空宇宙 更新时间:2023-11-04 03:04:06 26 4
gpt4 key购买 nike

我读过这个question但现在我们也有 4.5 解决方案将不起作用。
如何查看运行时是否在4.0以上?
因为它是一个字符串,我猜我不能这样做:

<DefineConstants Condition=" '$(TargetFrameworkVersion)' >= 'v4.0' ">NET_4_0</DefineConstants>

所以我应该同时定义两者:

<DefineConstants Condition=" '$(TargetFrameworkVersion)' == 'v4.0' ">NET_4_0</DefineConstants>
<DefineConstants Condition=" '$(TargetFrameworkVersion)' == 'v4.5' ">NET_4_5</DefineConstants>

是否有更通用的解决方案?

最佳答案

您可以使用 .NET 库中 System.String 类的任何方法,包括比较。

参见 http://msdn.microsoft.com/en-us/library/dd633440.aspx

编辑

如果您无法让属性函数充分发挥作用,您可以尝试 MSBuild Extension Pack。 http://www.msbuildextensionpack.com/help/3.5.3.0/html/9c5401ed-6f55-089e-3918-2476c186ca66.htm

关于c - 如果目标 .NET 运行时是 4.0 或更高版本,如何在编译时检测?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7866417/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com