How to output the target message in dotnet build command line

2022-08-04 15:14:35 浏览数 (1)

How can I output my target message when I using dotnet build in command line.

I use command line to create a web api application.

代码语言:javascript复制
dotnet new webapi -o Lindexi

Then I edit the LindexiLindexi.csproj and add the message.

代码语言:javascript复制
  <Target Name="Lindexi" BeforeTargets="CoreCompile">
    <Message Text="Welcome to my blog" />
  </Target>

I use the dotnet build to build the application but I can not find the message.

I try to change the message to warning that I can find the text in output.

In dotnet command, the verbosity can be set to verbosity level of the command.

The Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic].

The default value is minimal that do not print the target message. The lowest level of output message is normal command.

代码语言:javascript复制
dotnet build -v n

dotnet build command - .NET Core CLI

0 人点赞