The OutputPath property is not set for project

前端 未结 15 1127
无人及你
无人及你 2021-02-01 00:05

Building my Jenkins/MSBuild solution gives me this error

c:\\WINDOWS\\Microsoft.NET\\Framework\\v4.0.30319\\Microsoft.Common.targets(483,9): error : 
The OutputP         


        
15条回答
  •  孤独总比滥情好
    2021-02-01 00:58

    Open up your csproj in a text editor and see if you have a property group section, should look something like this:

    
        true
        full
        false
        bin\Latest\
        DEBUG;TRACE
        prompt
        4
        true
      
    

    Do you have a 'Latest' build configuration? If not add the above section to the csproj.

提交回复
热议问题