If you build your .NET projects with the .NET 8 SDK, you may have noticed that the assembly informational version now includes the git hash of the associated commit: var informationalVersion = typeof(Program).Assembly .GetCustomAttribute<AssemblyInformationalVersionAttribute>() .InformationalVersion; Console.WriteLine(informationalVersion); // Prints something like // 1.0.0+9aa8e4c69145f5b7b4b59c93f2a1ee5ea19b79f9 This is a breaking change in the .NET 8 SDK, which now includes Source Link by ...