The ABB build scripts are used by numerous projects (SrcML.NET, Sando, Swum.NET) for automatically building and versioning our software.
In order to add the scripts to your repository, you should add them as a git subtree. In short:
- Add a remote to your repository for the build scripts
This would look like this:
git remote add -f BuildScripts https://github.com/abb-iss/BuildScripts.git
git subtree add --prefix External/BuildScripts BuildScripts/master --squash
If you later need to update the build scripts, you can do it like this:
git fetch BuildScripts
git subtree pull --prefix External/BuildScripts BuildScripts master --squash
The key part of this script is the Version.targets
file. It requires some setup in order to work:
$(MSBuildCommunityTasksPath)
: this is the directory that contains the MS Build Community Tasks. It can either be installed locally in the repository or system wide.- Define an
AssemblyInfoFiles
item group that points to all of the assembly info files to be overwritten. The best way to do this is to have a solutin-wide "SolutionInfo.cs" that has all of the attributes. The individual projects can then have more specific information. - Define a
SourceManifests
item group that points to all of thesource.extension.vsixmanifest
files to be updated. - Add
CreateAssemblyInfo
andSetVsixVersion
as dependencies viaDependsOnTargets
You can see a sample of how it is used in Build.proj
. Build.proj
can be used to build simple projects. To perform additional actions (such as running tests or generating documentation) you should write your own build script.