We have a codebase with dependencies that are hosted in secured remote repository. Generally, when we do "dotnet restore", All the dependencies gets downloaded to local and then the code compiles. We don't want the download happen. Instead, We are checking if there is a way that the DLLs are used directly from remote location.
This is to ensure the DLLs are not de-compiled when we share the sharable codebase to external orgs/persons.
Any comments or suggestions?