Few question about deployment VB .NET project

rahavtom

Regular
Joined
Apr 2, 2004
Messages
63
Hello All!

I would like to ask few questions:

1. What is the different between the bin directory and the release directory in terms of application deployment?

2. How can I publish my application (create an install shield or something)?

3. How can I run my VB.Net project on a computer that doesn't have .NET installed on it?

Thanks in advanced,
Tom.
 
1) The bin directory contains the compiled assemblies, normally you would compile in release mode to get the more optimised versions of these.
2) In VS there is a setup project (file->new project->setup and deployment projects)
3) You can't, you will neede to make sure the framework is present.
 
Back
Top