本文介绍了条件$(配置)在.csproj中用于解决方案配置。有没有办法为每个单独的项目配置做???的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
条件$(配置).csproj 使用解决方案配置。
有没有办法为项目配置而不是解决方案?
例如。我期待类似
< ItemGroup 条件 = " '$(ProjectConfiguration)'
=='Windows' " >
假设我在Configuration Manager中将项目配置定义为Windows。
解决方案
Condition $(Configuration) in .csproj uses the solution Configuration.
Is there a way to do it for project configuration instead of solution???
eg. I am expecting something like
<ItemGroupCondition="'$(ProjectConfiguration)' == 'Windows' ">
assuming I define a project configuration as Windows in Configuration Manager.
解决方案
这篇关于条件$(配置)在.csproj中用于解决方案配置。有没有办法为每个单独的项目配置做???的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!