Issue Building a single project using msbuild that has multiple configurations

前端 未结 5 668
臣服心动
臣服心动 2021-02-06 23:14

Issue

We are using config transforms inside our solution. For example: Debug, Test, Staging, Release However, those configurations are only used on our

5条回答
  •  旧时难觅i
    2021-02-07 00:11

    Put an OR condition for the different values on Release for as many different configurations that you have.

    eg.

    
        pdbonly
        true
        bin\Release\
        TRACE
        prompt
        4
      
    

提交回复
热议问题