When to use a build tool?

前端 未结 8 518
闹比i
闹比i 2021-02-04 16:07

A beginner question, bear with me: I\'m just wondering under what circumstances one should use a build tool like nant or msbuild? I\'m working on a medium sized application (.ne

8条回答
  •  滥情空心
    2021-02-04 16:55

    A build tool should be used when your process for building becomes longer than one command. It should be used to get your standard build process back down into one command. If your build process is longer than one command, then you have the opportunity for errors to creep in from missed/duplicated/incorrect commands being done during a build.

提交回复
热议问题