visual studio - How to suppress warning output in CruiseControl.net -


i using cruisecontrol.net build , deploy part of continuous integration. during build process, shows many warnings shown below:

read-only property "ccnetlabel" cannot overwritten. log\ilogrecord.cs(10,18): warning cs0108: 'my.interface.log.ilogrecord.level' hides inherited member 'my.interface.log.ilogtuple.level'. use new keyword if hiding intended. [d:\build\mysite\abc\technology.interface\teach.interface.csproj]

these benign warnings no bearing on build process. there way suppress them?

thanks

try these parameters in msbuild task in ccnet.config file. passes these msbuild executable.

<buildargs>/consoleloggerparameters:errorsonly /verbosity:minimal</buildargs> 

they documented in msbuild command line reference https://msdn.microsoft.com/en-us/library/ms164311.aspx


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -