MSBuildGitHash icon indicating copy to clipboard operation
MSBuildGitHash copied to clipboard

Includes the Git repo hash in your compiled .NET assemblies

Results 7 MSBuildGitHash issues
Sort by recently updated
recently updated
newest added

This is for other people's future reference. I was using the MSBuildGitHash Nuget package v2.0.2. While trying to run some custom git commands to capture additional information, I ran into...

This is a rehash (he!) of https://github.com/MarkPflug/MSBuildGitHash/issues/5 When building again after moving to a revision with changes only on files outside the project, msbuild thinks the project is up-to-date and...

Added info about SDK style projects and custom formats, also mentioning ".NET Framework". You are of course free to improve/change the text.

On 2 of my machines MSBuildGitHash is working like a charm. However, I do have one machine which is not connected to the internet (and will not be connected). On...

I want to disable MSBuildGitHash in Debug config because it increases compilation time, but useless in debug for me. Also it seems that project may rebuild because of MSBuildGitHash even...

When I include MSBuildGitHash (v2.0.2) in my .NET Framework WebApp project, I get warnings as shown below. ``` 2>RunAssemblyMetadataCommand: 2> git describe --tags --always --dirty=* 2> 0.1-4-g0123abc* 2>RunAssemblyMetadataCommand: 2> git...

I had to use `GetExecutingAssembly()` to extract the `"GitHash"` in a .NET Framework WebApp, since `GetEntryAssembly()` was returning `null`. Perhaps this is worth mentioning in the `README.md`?