I am using C# in Visual Studio 2010 to write a program that will need to be run on multiple computers. So far I can run the program on another pc if the pc has VS 2010 installed on it. If there is no VS 2010, then the program doesn’t run. Is there a way to get the program to run without having to install VS 2010?
Share
If you right click your project and go into the properties, take a look at the
Applicationtab, you can see what the target framework is:This indicates what the minimum version of .NET framework is required to run your application. As long as you have .NET framework with that version or higher installed on your other machine, your program will run.