Project reference conditional include with multiple conditions

后端 未结 1 2016
猫巷女王i
猫巷女王i 2021-02-01 00:10

Here\'s a snippet from my csproj file:


          


        
相关标签:
1条回答
  • 2021-02-01 00:46

    You should use Or, not ||:

    Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='Release'"
    
    0 讨论(0)
提交回复
热议问题