Dynamic dll loading

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Analizer1

    #1

    Dynamic dll loading

    hello,
    i have some services that use a class library our company developed all code
    is c#
    I dont want to have multiple copies of this common library with each
    service....

    how can i tell the services where to bind to this common library....
    suedo example:
    d:\services\ser vice1\service1. exe
    d:\services\ser vice2\service2. exe

    //common folder
    d:\services\com mon\common.dll

    i would like all the services to bind to the common.dll

    thanks



  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: Dynamic dll loading

    Why not install it in the GAC?


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "Analizer1" <dvs_bis@sbcglo bal.netwrote in message
    news:1ZRaj.3396 5$Pv2.31106@new ssvr23.news.pro digy.net...
    hello,
    i have some services that use a class library our company developed all
    code is c#
    I dont want to have multiple copies of this common library with each
    service....
    >
    how can i tell the services where to bind to this common library....
    suedo example:
    d:\services\ser vice1\service1. exe
    d:\services\ser vice2\service2. exe
    >
    //common folder
    d:\services\com mon\common.dll
    >
    i would like all the services to bind to the common.dll
    >
    thanks
    >
    >
    >

    Comment

    Working...