Setting the Application Version and Finding it in Pocket PC

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!!
 
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
 
Thank you!



dbgric wrote:

RE: Setting the Application Version and Finding it in Pocket PC
18-May-07

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().Versio

Rick D
Contracto

:

Previous Posts In This Thread:

Setting the Application Version and Finding it in Pocket PC
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
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().Versio

Rick D
Contracto

:

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

Thank you so much for the help

Thanks!
-ja

:

EggHeadCafe - Software Developer Portal of Choice
Creating a Dynamic DHTML /XML newsfeed Transform
http://www.eggheadcafe.com/tutorial...54-14617939cc6a/creating-a-dynamic-dhtml.aspx
 
Back
Top