Best way to combine Git with .NET when versioning

前端 未结 5 591
轻奢々
轻奢々 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:39

    If you don't have the capability to use a build server, that's probably the best way to do it manually. However, if you've got the time, I highly recommend getting some type of build server in place. We've had a lot of success with TeamCity. If you have it set up to track your repository, there are ways to do assembly info patching, tagging and post-build deployment (there are a bunch of possible links for those, I recommend just hitting up the documentation).

    I found this post pretty helpful when setting up our versioning; you can pretty much exclude the NuGet bits and it should have some decent information. As far as setting up TeamCity goes, just do a quick search for "TeamCity Setup Tutorial" and you should have a ton of resources. Good luck!

提交回复
热议问题