output - MSBuild task silent execution -
I have an MS Word script which is working perfectly but when this task is executed, Then I am looking at all the production progress. What is the only way to write:
Building project ... okay.
Instead of 1000 lines of text?
Use to set logs at the level you want, such as:
msbuild myScript.proj / verbosity: quiet - Run your work using Exec Task (see for details)
- Implement and filter messages by the task name.
Comments
Post a Comment