Hi I am new to programming and I just wrote a small test program to see if Visual Studios 2010 works.
It seems that even though I targeted the Program for .Net 3.5, the DLL project is still targeted for 4.0 (with no options to change it, that I found).
The program runes fine on my computer. But it crashes on friend's computers unless they also had .Net 4.0 Installed (comes with VS2010 Beta).
Does it matter that the DLL library is targeted for .net 4.0? Or is the crashes unrelated to the DLL file and is something else at work?
[Edit]
Just tested and it is the DLL's fault. If I comment out all the lines that uses the DLL the program launch without any problems.
Does anyone know how to fix the requirement for .net 4.0 in regards to a DLL? I have no idea how.
It seems that even though I targeted the Program for .Net 3.5, the DLL project is still targeted for 4.0 (with no options to change it, that I found).
The program runes fine on my computer. But it crashes on friend's computers unless they also had .Net 4.0 Installed (comes with VS2010 Beta).
Does it matter that the DLL library is targeted for .net 4.0? Or is the crashes unrelated to the DLL file and is something else at work?
[Edit]
Just tested and it is the DLL's fault. If I comment out all the lines that uses the DLL the program launch without any problems.
Does anyone know how to fix the requirement for .net 4.0 in regards to a DLL? I have no idea how.
Comment