Setting the Application Version and Finding it in Pocket PC

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!!
 
G

Guest

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
 
M

Mikhail Diatchenko

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top