How to suppress specific MSBuild warning

前端 未结 6 1671
悲&欢浪女
悲&欢浪女 2020-11-28 07:03

Is there any way to disable specific MSBuild warning (e.g. MSB3253) when running MSBuild from command line? My build script calls msbuild.exe much the following way:

6条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 07:30

    For MSB3253 you can just set in project file (*.csproj) that cause such warning.

      
        Debug
        AnyCPU
        
        
            None
        
        
      
    

提交回复
热议问题