ASP.Net Web Application Add Config Transform Grayed Out

前端 未结 6 1644
自闭症患者
自闭症患者 2020-12-08 01:20

I added an existing ASP.Net web application project to my solution. In addition to the standard debug and release configurations this solution also has two custom configurat

6条回答
  •  醉话见心
    2020-12-08 02:14

    To get this working i had to add new property groups to my csproj file.

    Add Config Transform was grayed out.

    i added the following XML to my csproj and reloaded the project. then Add Config Transform was available. once selected my addition transforms were added

    
        pdbonly
        true
        bin\
        TRACE
        prompt
        4
      
      
        pdbonly
        true
        bin\
        TRACE
        prompt
        4
      
    

提交回复
热议问题