Idiots question on .Net framework
-
Hi Another complete beginner question. How can i get the .NET framework 2.0 beta that is installed on my machine onto a disc so that a user running a program directly from that disc can install it on their machine to allow this app to work? Thanks Dr Wizard Wizard of all except programming!
-
Hi Another complete beginner question. How can i get the .NET framework 2.0 beta that is installed on my machine onto a disc so that a user running a program directly from that disc can install it on their machine to allow this app to work? Thanks Dr Wizard Wizard of all except programming!
I think it is not a good idea to copy dependencies from one machine to another. If you want to run application on Client's machine, you've to include .NET Framework 2.0 runtime (redistributable)setup package. The setup program performs various operations like copying assemblies and files, registering assemblies in GAC, copying COM servers like MSCoree.dll and registering them in registry and many other tasks. Imtiaz