首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >How to output the target message in dotnet build command line

How to output the target message in dotnet build command line

作者头像
林德熙
发布2022-08-04 15:14:35
发布2022-08-04 15:14:35
2010
举报
文章被收录于专栏:林德熙的博客林德熙的博客

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 Lindexi\Lindexi.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

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档