assembly search path

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: assembly search path

    The most common solution for this would be to put your shared DLL into the
    Global Assembly
    Cache (GAC)

    Here's more info:
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconglobalassemblycache.asp[/url]
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsintro7/html/vxconInstallingToGlobalAssemblyCache.asp[/url]
    [url]http://www.aspzone.com/articles/john/GAC/[/url]

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "noname" <askme@fake.com> wrote in message
    news:OqNnb3SXDHA.652@tk2msftngp13.phx.gbl...
    > is there any way to add a path to asp.net's default paths when it searches
    > for assemblies? i made a base class that all my web apps will inherit
    from.
    > but i don't want to copy the assembly into the /bin directories of each
    web
    > app. can i instead put the base class assembly in one directory and
    > configure each web app to look there; in the web.config perhaps?
    >
    > thanks for any help!
    >
    >

    Steve C. Orr, MCSD Guest

  2. Similar Questions and Discussions

    1. Assembly acessing StrongNamed assembly getting "Access Denied" intermitently
      I have an ASP.NET application that is using a code library our development team uses. The code library is a few web controls in a Strong Named...
    2. PEAR Search Path (PHP's include_path)
      I am running fBSD 5.3-Release and have installed Horde via ports and am having trouble finding the pear search path to put in the php.ini...
    3. problem with GCC search path on FreeBSD5.3 AMD64
      > this isn't a gcc problem. Hm, maybe I used the wrong terms to define the situation. I agree that its not gcc's fault, its some kind of...
    4. Change search path.
      I have several web services and they all rely on the assemblies in a root directory. Right now I have something like: A web service B web...
    5. Reading the public key inside a strongly signed assembly from the assembly itself???
      Hello, is it possible to programmatically read (and how) the public key that is embedded into an assembly that has been strongly signed??? What...
  3. #2

    Default Re: assembly search path

    yeah, i thought about that, but i just don't think i'm ready for the GAC yet
    (don't know too much about assemblies). is there any other way?

    "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    news:%23%23CxD6SXDHA.1384@TK2MSFTNGP10.phx.gbl...
    > The most common solution for this would be to put your shared DLL into the
    > Global Assembly
    > Cache (GAC)
    >
    > Here's more info:
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconglobalassemblycache.asp[/url]
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsintro7/html/vxconInstallingToGlobalAssemblyCache.asp[/url]
    > [url]http://www.aspzone.com/articles/john/GAC/[/url]
    >
    > --
    > I hope this helps,
    > Steve C. Orr, MCSD
    > [url]http://Steve.Orr.net[/url]
    >
    >
    > "noname" <askme@fake.com> wrote in message
    > news:OqNnb3SXDHA.652@tk2msftngp13.phx.gbl...
    > > is there any way to add a path to asp.net's default paths when it
    searches
    > > for assemblies? i made a base class that all my web apps will inherit
    > from.
    > > but i don't want to copy the assembly into the /bin directories of each
    > web
    > > app. can i instead put the base class assembly in one directory and
    > > configure each web app to look there; in the web.config perhaps?
    > >
    > > thanks for any help!
    > >
    > >
    >
    >

    noname Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139