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?
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?
You can use:
FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion;