> I am having a problem with version information in one of my compact
> framework 2.0 VB.Net application which I am designing in Visual Studio
[quoted text clipped - 6 lines]
>
> Any ideas?
In AssemblyInfo.vb, there should be an Assembly attribute named
"AssemblyVersion":
<Assembly: AssemblyVersion("1.0.*")> (VB.Net)
[assembly: AssemblyVersion("1.0.*")] (C#)
HTH,
Mythran
Gareth - 03 Oct 2007 08:45 GMT
Thanks, but there is an assemblyinfo.vb file in the project with the
version number tag.
At runtime I can query the version number using:
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version
Its just in windows that I have the problem, I need to be able to
query the file's version number frm another application.
Cheers,
Gareth