Click here to Skip to main content
15,916,288 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
is it possible to run setup file of vb.net without having framework?
if yes than please help me,how do i run my setup without having framework.....
Posted

I have never tried this before, but IMO, you should be able to run the setup.
You will, however, not be able to run your program, you need to include the .Net Framework as part of your setup.
 
Share this answer
 
Do you mean set up a .NET software (as VB.NET project make a .NET assembly)? Probably it is possible, but why? The project will not run without the Framework. I see no sense.

—SA
 
Share this answer
 
No. Its not possible.

First you should install the framework.
If you install the setup without installing framework it will give alert to install frame work.
 
Share this answer
 
IF you used the Setup and Deployment project in Visual Studio, no you can't. That project requires the .NET Framework be installed before you can run the installer for your project.

If you used a third party setup creation system, like InnoSetup or InstallShield, Wise for Windows, ... then you can leave out the pre-req requirement of the .NET Framework and your installation will proceed. This is NOT a good idea though. If you have assemblies you're trying to install into the GAC or you're installing Windows Services you've written in managed code (VB.NET, C#, ...), or other items that require the .NET Framework be installed in order for these components to install properly, your installation will NOT work until the .NET Framework is installed.

Besides, your app won't even launch until .NET is installed anyway.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900