954,551 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Application Deployment

I have created a few projects in VB.NET using Visual Studio 2005. I am wondering how to package the applications for deployment. I would like to be able to upload applications to a server or e-mail the apps. An .exe file with an icon would be great. How do I do it?

I have the same question for java and C++ applications.

Thanks,
Mark

dmmckelv
Light Poster
33 posts since Nov 2006
Reputation Points: 10
Solved Threads: 0
 

In Visual Studio go to New Project -> Project types: Other Project Types -> Setup and Deployment.

While in java you can create it to a JAR file which is more like a zip. If you want to create an exe out of java files then you have to use a third party tool to create an exe.

For creating a JAR:

first create a manifest file

Manifest-Version: 1.0
Created-By: 1.5.0 (Sun Microsystems Inc.)
Main-Class: mainclass name


then to create the JAR file.

jar cmf manifest.mf anyname.jar *.*
arjunsasidharan
Practically a Posting Shark
826 posts since Aug 2006
Reputation Points: 347
Solved Threads: 13
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You