Hi,
I added Custom-DLL's to the CSharpProjectAssembly.
But the completion list in the syntax editor shows only the namespaces included in the dll, no special types or members of the custom-dll.
I added the custom'dlls (after the Main window is already created by constructor) via a dependency property, and I loaded it by name and path:
if (projectAssembly != null)
{
projectAssembly.AssemblyReferences.AddFrom(
Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), "xxx.dll"));
}
The adding seems to work, as I can see the dll in the AssemblyReferences-List after this code ,when debugging
What may I have done wrong?
Thanks for any help!