gpt4 book ai didi

visual-studio-2010 - 如何在构建后事件中使用OR语句?

转载 作者:行者123 更新时间:2023-12-03 15:41:06 25 4
gpt4 key购买 nike

我正在尝试在Post-Build事件中使用带有OR的条件条件,但到目前为止,我还没有走运。以下内容不起作用:
if not "$(ConfigurationName)" == "Debug" or not "$(ConfigurationName)" == "Release" (
但这有效:
if not "$(ConfigurationName)" == "Debug" (
在第一个代码中,我得到一个存在代码4。

最佳答案

似乎至少在缺少此文档的情况下,Post-Post Build事件中没有在条件中提供OR/AND的规定:http://technet.microsoft.com/en-us/library/bb490920.aspx

您必须重新编写IF语句才能执行您想做的事情。

if not "$(ConfigurationName)" == "Debug" (
rem do something
) else if not "$(ConfigurationName)" == "Release" (
rem do the same thing as above
)

希望能对您有所帮助,尽管您的情况对我而言没有任何意义。 :-)

关于visual-studio-2010 - 如何在构建后事件中使用OR语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13825811/

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