Best way to combine Git with .NET when versioning

前端 未结 5 571
轻奢々
轻奢々 2021-02-05 05:46

I\'m currently working on a project (just me), and I already know how to handle versioning on it. I\'m using the classic ..

5条回答
  •  甜味超标
    2021-02-05 06:44

    I use Makefiles for everything after the commit.

    Depending on how your build system works, you might be able to add a target "release" which tags the current branch and pushes this tag. You would also add a "package" target that depends on the "build" and "release" targets.

    If that doesn't work, just create your own Makefile. You might or might not have to name your "Makefile" differently.

提交回复
热议问题