I want to programmatically retrieve File Version information
from Assembly Information window in C# code, so that I can do my further work
based on that info.
So any one have idea how do I retrieve this info?
home / developersection / forums / how to retrieve file version of assembly information window in asp.net c#
I want to programmatically retrieve File Version information
from Assembly Information window in C# code, so that I can do my further work
based on that info.
So any one have idea how do I retrieve this info?
Anonymous User
02-Dec-2014You can use:
FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion;