wpf - C# Class Library, Cannot register App.Manifest with details for 3rd party DLLs -


i'm building prism wpf application , main module loads custom control each device on network. custom control uses 3rd party libraries sdk. sdk installed on client machine in application folder standalone installation recommend sdk distributor avoid future compatibility problems other applications use same sdk.

this sdk has folder structure inside application root folder , dlls not directly in application root folder in sub-folders.

a manifest file in wpf application shell allows application find sdk dlls in sub-folders custom control not find dlls. if manually place dlls custom control needs application root folder on client machine custom control works.

so basically, main application uses manifest custom control library doesn't. custom control using windows forms intergeneration load active x control in main prism module , display in wpf application.

can add app.manifest custom control class library? ( google says no ). there solution?

on further inspection it's obvious 2 of dll's custom control needs not in sdk , placing these 2 dll's application root solves issue. means class library using manifest find common dll's in sdk folder structure.


Comments

Popular posts from this blog

php - Add the correct number of days for each month -

java.util.scanner - How to read and add only numbers to array from a text file -