Click here to Skip to main content
15,892,575 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I have an application (video converter) that i have built in vs2008.it requires complete installation to run.it is not running after installing only .net framework 3.5.
Please suggest me a solution.

Thanks in Advance
Posted
Updated 23-Jul-13 5:44am
v2
Comments
[no name] 23-Jul-13 11:18am    
First thing is to stop screaming at people.
Second thing would be to make sure all of the files required for your application are being installed.
Third thing is to debug your code and find out why it's not running.
Sergey Alexandrovich Kryukov 23-Jul-13 11:27am    
First, please stop screaming (ALL CAPS is considered shouting on the Web, pretty impolite), secondly, what you say is not true. Please see my answer.

If you still have a problem, this is only because you managed to screw up something. We have no idea what. (For example, your application might not be a pure .NET application, you might add some artificial dependencies, and so one...) Due to morning rain, my access to your hard drive is somewhat limited today.
—SA

1 solution

No, it does not. The .NET applications don't require Visual Studio for running, ever. They don't even require any Visual Studio redistributable packages, as some other projects do. Such application only require .NET framework. If you use any 3rd-party libraries, you of course need to redistribute them with your application.

Moreover, Visual Studio is not even required for building of your projects and, hence, not really required for development. Having Visual Studio is just a convenience. You should understand that the Studio itself does not build anything at all. MSBuild and the compilers do, and both BSBuild and C# and VB.NET compilers are bundled with (freely redistribute) .NET framework.

—SA
 
Share this answer
 
Comments
Deepak.xip 23-Jul-13 11:31am    
thanks for the solution.Yes I have a third party dll which I have already bundled with the setup.I wonder why the application runs smooothly just after installing VS2008.
Sergey Alexandrovich Kryukov 23-Jul-13 11:49am    
You are welcome.
Well, I have no idea of your project. If you use the 3rd-party library, you will have to redistribute it. Address to its documentation. Some libraries, especially those with non-free licensing, may require more or less complicated scheme for redistribution.

Anyway, will you accept my answer formally (green button)?

—SA
Deepak.xip 23-Jul-13 11:33am    
P.S.
I am using SkinCrafter.

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