Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Sharphound.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

using System;
using System.DirectoryServices.Protocols;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using CommandLine;
Expand All @@ -38,6 +39,8 @@ public class Program {
public static async Task Main(string[] args) {
var logger = new BasicLogger((int)LogLevel.Information);
logger.LogInformation("This version of SharpHound is compatible with the 5.0.0 Release of BloodHound");
logger.LogInformation("SharpHound Version: {Version}", Assembly.GetExecutingAssembly().GetName().Version.ToString());
logger.LogInformation("SharpHound Common Version: {Version}", Assembly.GetAssembly(typeof(CommonLib)).GetName().Version.ToString());

try {
// Checks the release version available on the machine.
Expand Down