Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get exe application name and version in C# Compact Framework

My application has an exe and uses some DLLs. I am writing all in C#.

In one DLL I want to write a method to get the application name and version from the version information in the exe.

I understand that in full .NET I could use GetEntryAssembly, but that that is unavailable in CF.

like image 431
cja Avatar asked Feb 12 '13 09:02

cja


2 Answers

Getting the app name:

System.Reflection.Assembly.GetExecutingAssembly().GetName().Name;

Getting the version:

System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;

You might want to use GetCallingAssembly() or getting the assembly by type (e.g. typeof(Program).Assembly) if your DLL is trying to get the EXE version and you don't have immediate access to it.

EDIT

If you have a DLL and you need the name of the executable you have a few options, depending on the use case. You can get the Assembly from a type contained in the EXE assembly, but since it would be rare for the DLL to reference the EXE, it requires the EXE pass in an object of that type.

Version GetAssemblyVersionFromObjectType(object o)
{
    o.GetType().Assembly.GetName().Version;
}

You could also do a little bit of an end-run like this:

[DllImport("coredll.dll", SetLastError = true)]
private static extern int GetModuleFileName(IntPtr hModule, StringBuilder lpFilename, int nSize);

...

var name = new StringBuilder(1024);
GetModuleFileName(IntPtr.Zero, name, 1024);
var version = Assembly.LoadFrom(name.ToString()).GetName().Version;
like image 85
ctacke Avatar answered Oct 23 '22 17:10

ctacke


System.Reflection.Assembly.GetEntryAssembly().GetName().Version;

This function will give version of Application from where other libraries are loaded.

System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;

This will give version of current library. If you call this in Application library you will get application version and if call this in a DLL then will get that DLL version.

So in my opinion System.Reflection.Assembly.GetEntryAssembly().GetName().Version; is currect function to use.

like image 25
Rohan D Avatar answered Oct 23 '22 16:10

Rohan D