Skip to content

Instantly share code, notes, and snippets.

@marta-krzyk-dev
Created April 29, 2019 08:59
Show Gist options
  • Save marta-krzyk-dev/05b148422fbbe02225029aeecef70421 to your computer and use it in GitHub Desktop.
Save marta-krzyk-dev/05b148422fbbe02225029aeecef70421 to your computer and use it in GitHub Desktop.
Read DLL version
using System;
using System.Diagnostics;
namespace ReadDLLVersion
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(FileVersionInfo.GetVersionInfo(@"C:\SomeDLL.dll").FileVersion);
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment