Is assemblies.config only for PDSOE use, or is it also avail

Posted by jquerijero on 19-Jul-2018 14:57

I need to segregate a third-party tool to make it easy maintaining hundreds of files. I read that in PDSOE, assemblies.config can be used to reference dlls from multiple folders relative to the folder where assemblies.xml is located. Can you also use this feature during run-time, or is there another mechanism?  

Posted by Mike Fechner on 19-Jul-2018 15:02

assemblies.config works at runtime too.
 
Mine looks like this:
 
<configuration>
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" >
            <probing privatePath="Consultingwerk;Infragistics;Microsoft;Support;Telerik;ZeroMQ" />  
        </assemblyBinding>   
    </runtime>
</configuration>
 

All Replies

Posted by Mike Fechner on 19-Jul-2018 15:02

assemblies.config works at runtime too.
 
Mine looks like this:
 
<configuration>
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" >
            <probing privatePath="Consultingwerk;Infragistics;Microsoft;Support;Telerik;ZeroMQ" />  
        </assemblyBinding>   
    </runtime>
</configuration>
 

Posted by jquerijero on 19-Jul-2018 15:15

Do you know if the relative path ".." notation is supported?

>> Nevermind, loading dlls outside the assemblies folder doesn't work.

This thread is closed