B
benliu
i have a visual studio website that i am integrating with community
server, a third party software for creating communities. To
paraphrase, i am trying to have users that log in to my site
automatically log in to the community server site (which is its own web
application, with its own dlls and web.config files, and in a separate
directory etc). To do this, i need to access the classes located in
the community server dll...
Sounds easy enough - I referenced the dll's located in that directory
through visual studio, and it copies the dll over to the website's bin
direcotry. However, i find then that there are multiple dependencies
on other dll's, as well web.config files, and directory structures that
the dll expects. If i just keep referencing dll's and copying files
over to my website project, the project will be convuluted with a bunch
of "crap." I'd like to keep my project separate from the community
server project.
So, I'd like to be able to reference the dll directly in the other web
application. I noticed that in visual studio projects, you can select
something like "keep local" for the dll's, but that option is not
available in the website project. Also, as those dll's will be loaded
into memory, i don't want to create another copy of the same dll within
my project. I just want to use "their" copy of the dll. This way, the
dll also knows where to find the web.config files, etc that it depends
on. How do i accomplish this?
Sorry, not sure if i clearly stated what i'm trying to do. If not, i
can clarify further. Thanks...
server, a third party software for creating communities. To
paraphrase, i am trying to have users that log in to my site
automatically log in to the community server site (which is its own web
application, with its own dlls and web.config files, and in a separate
directory etc). To do this, i need to access the classes located in
the community server dll...
Sounds easy enough - I referenced the dll's located in that directory
through visual studio, and it copies the dll over to the website's bin
direcotry. However, i find then that there are multiple dependencies
on other dll's, as well web.config files, and directory structures that
the dll expects. If i just keep referencing dll's and copying files
over to my website project, the project will be convuluted with a bunch
of "crap." I'd like to keep my project separate from the community
server project.
So, I'd like to be able to reference the dll directly in the other web
application. I noticed that in visual studio projects, you can select
something like "keep local" for the dll's, but that option is not
available in the website project. Also, as those dll's will be loaded
into memory, i don't want to create another copy of the same dll within
my project. I just want to use "their" copy of the dll. This way, the
dll also knows where to find the web.config files, etc that it depends
on. How do i accomplish this?
Sorry, not sure if i clearly stated what i'm trying to do. If not, i
can clarify further. Thanks...