ASP.NET Where Can I Store Required DLLs

I have a solution that references several class libraries. The site requires these DLLs to work. Where would it be best to store these necessary DLLs so that when people check my project they are ready to use?

+4
source share
3 answers

This is my setup:

-SorurceControlRoot /SRC MySolution.sln /MyFirstProject /bin(SC ignore) /obj(SC ignore) MyClass.cs MyFirstproject.csproj (includes info what .dlls the project needs) /LIBS MyReferencedLib1.dll MyReferencedLib2.dll /DOCS TechnicalSpec.doc 

There has never been a problem with this. You want to see the DLLs in VS, or you want them to be in the solution for TFS, so just add the solutions folder associated with the LIBS folder.

+5
source

Anywhere, which is logical when someone wants to look for him.

I keep it in a directory called "Libs" at the root of the solution.

+1
source

Save them in the bin folder of your application

-2
source

Source: https://habr.com/ru/post/1390607/


All Articles