Home All Groups Group Topic Archive Search About
Author
31 May 2006 6:47 PM
Joe
Hello All;

When I deploy my application (which consists of an executable and a config
file), does the user need the .NET framework installed on his machine for my
app to run or does the Setup Wizard distribute the required components along
with my executable?

TIA,

--
Joe

Author
31 May 2006 6:59 PM
IdleBrain
Hello Joe,
The system should have the appropriate framework installed on the
system to run your application. You can also include the dotnet
framework with the setup file if you want to.

Hope it helps..
Author
31 May 2006 7:01 PM
Barry
Joe wrote:
> Hello All;
>
> When I deploy my application (which consists of an executable and a config
> file), does the user need the .NET framework installed on his machine for my
> app to run or does the Setup Wizard distribute the required components along
> with my executable?
>
> TIA,
>
> --
> Joe


Joe,

AFAIK you need to install the .NET Framework first.

You can configure the setup to abort if the Framework does not exist
but I don't think you auto install the Framework if it doesn't exist.

HTH

Barry
Author
31 May 2006 7:33 PM
Jim Wooley
> When I deploy my application (which consists of an executable and a
> config file), does the user need the .NET framework installed on his
> machine for my app to run or does the Setup Wizard distribute the
> required components along with my executable?

Yes, the user does need to have the .NET framework installed in order to
use your application. It is possible to bootstrap the framework installer.
I don't have code handy to do that, but you should be able to find it with
a search.

Jim Wooley
http://devauthority.com/blogs/jwooley/default.aspx
Author
31 May 2006 7:42 PM
zacks
Joe wrote:
> Hello All;
>
> When I deploy my application (which consists of an executable and a config
> file), does the user need the .NET framework installed on his machine for my
> app to run or does the Setup Wizard distribute the required components along
> with my executable?
>

Any app that was developed with VS2005 can only run on a computer that
has the .NET Framework 2.0 installed. If your app is installed with VS
Setup project, you can have it automatically install it if you want it
to. Just add a launch condition of .NET Framework and specify the value
of:

http://go.microsoft.com/fwlink/?LinkId=9832

for the InstallUrl.