I'm using a nuget package (let's call it A
) which has dependency to another package, let's call it B
.
To include A
in my project, I changed .csproj
file to:
<ItemGroup>
<PackageReference Include="A" Version="2.0.5" />
</ItemGroup>
When I run nuget restore
package B
is consumed from some nuget source too.
I want to replace dlls of package B
with my own DLLs, I've created myself.
I can do it on my local machine by just copy pasting the desired dlls in bin folder. But how can I do the same on Azure Websites? Is there anyway to automate this process?
Is there any way to tell nuget not to fetch DLLs of B
from nuget source and instead use my desired ones?