Project reference conditional include with multiple conditions

后端 未结 1 2015
猫巷女王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)
提交回复
热议问题