I have developed a Pocket PC Application. I would like to set the version
number and find it on the Pocket PC . I set the version number in the SetUp
project and I don't know how to check it in the Pocket PC. Please help me
out in this.

Thanks!!

RE: Setting the Application Version and Finding it in Pocket PC by dbgrick

dbgrick
Fri May 18 15:03:01 CDT 2007

Jay,
You set the version for your assembly by editing the assembly:
AssemblyVersion attribute in the AssemblyInfo.cs file. When you compile the
app, your version will be attached to either your exe or dll.

To retrieve the version, you can use
Assembly.GetExecutingAssembly().GetName().Version

Rick D.
Contractor

"Jay" wrote:

> I have developed a Pocket PC Application. I would like to set the version
> number and find it on the Pocket PC . I set the version number in the SetUp
> project and I don't know how to check it in the Pocket PC. Please help me
> out in this.
>
> Thanks!!
>

RE: Setting the Application Version and Finding it in Pocket PC by Jay

Jay
Mon May 21 07:20:01 CDT 2007

dbgrick,

Thank you so much for the help.

Thanks!!
-jay

"dbgrick" wrote:

> Jay,
> You set the version for your assembly by editing the assembly:
> AssemblyVersion attribute in the AssemblyInfo.cs file. When you compile the
> app, your version will be attached to either your exe or dll.
>
> To retrieve the version, you can use
> Assembly.GetExecutingAssembly().GetName().Version
>
> Rick D.
> Contractor
>
> "Jay" wrote:
>
> > I have developed a Pocket PC Application. I would like to set the version
> > number and find it on the Pocket PC . I set the version number in the SetUp
> > project and I don't know how to check it in the Pocket PC. Please help me
> > out in this.
> >
> > Thanks!!
> >