Copy local = False
-
I have created a Windows Form control and also an application that uses it. When I reference the control, if I don't choose "copy local = true", the it throws a System.IO.FileNotFoundException. What may be the reason?
-
I have created a Windows Form control and also an application that uses it. When I reference the control, if I don't choose "copy local = true", the it throws a System.IO.FileNotFoundException. What may be the reason?
Is the directory that contains the assembly in your search path? Your executable will need to be able to load the assembly at runtimne...
-
Is the directory that contains the assembly in your search path? Your executable will need to be able to load the assembly at runtimne...
Yes, you are right... In fact, the correct place for this assembly would be the GAC (Global Assembly Cache). However, I don't know how to tell my setup program to place the assembly into the GAC. (I am creating a Deployment Project)