• 2019-8-31-How-to-output-the-target-message-in-dotnet-build-command-line


    title author date CreateTime categories
    How to output the target message in dotnet build command line
    lindexi
    2019-08-31 16:55:58 +0800
    2019-4-24 20:2:18 +0800
    dotnet

    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.

    dotnet new webapi -o Lindexi

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

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

    dotnet build -v n

    dotnet build command - .NET Core CLI

  • 相关阅读:
    Elixir 学习资源
    elixir 模块
    elixir 表单 map
    elixir 关键字列表
    elixir case cond if
    elixir 模式匹配
    elixir 基础数据结构
    5、OpenCV Python ROI和泛洪填充
    6、OpenCV Python 图像模糊
    4、OpenCV Python 像素运算
  • 原文地址:https://www.cnblogs.com/lindexi/p/12086554.html
Copyright © 2020-2023  润新知