Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding supporting libraries to NuGet package without adding as references

Tags:

nuget

I have a group of DLLs: some are meant to be directly referenced by the project and others are just supporting those DLLs and aren't meant for direct interaction. I know how to add files to be project references for NuGet: put them in the lib folder. But how do I get DLLs to be around to get picked up during builds but not be project references?

like image 792
RandomEngy Avatar asked Oct 09 '22 03:10

RandomEngy


1 Answers

pranavkm on the NuGet CodePlex discussions pointed me here:

http://docs.nuget.org/docs/reference/nuspec-reference#Specifying_Explicit_Assembly_References

like image 195
RandomEngy Avatar answered Oct 13 '22 12:10

RandomEngy