Using #C.net 3.5
I\'m aware of the ILMerge and alike techniques, but I would actually like to make use of Jeffrey Richter\'s suggestions.
After adding this c
String resourceName = "AssemblyLoadingAndReflection." + new AssemblyName(args.Name).Name + ".dll";
should be changed to:
String resourceName = Application.Current.GetType().Namespace + "." + new AssemblyName(args.Name).Name + ".dll";