Im looking for way to integrate MsBuild scripts with Git source control. The first thing I would like to make is to create Task that creates Git Tag at sources.
MsBuild Comunity Tasks looks like doesn’t have any support for Git.
Any ideas how to connect these two is much appreciated.
Depending what you are doing and if you want to keep it simple, just use the
Exectask to call the appropriate git command, likegit tagYou can otherwise look at extending MSBuild and write tasks that make use of these
git commandsor you can make use of GitSharp