Cade Roux
Cade Roux

Reputation: 89661

Way to tell Visual Studio to automatically load certain references?

Say I have low-level utility assemblies with some basic classes.

Then I have other higher-level assemblies which use those classes, potentially taking them as parameters and returning them.

Now, at the application level in the solution, if you add a higher-level assembly which uses lower-level assemblies in this manner, if you don't add references to the lower-level assemblies, the application will not compile.

Is there a way to indicate that a reference to an assembly requires other references to be exist or be added?

Upvotes: 4

Views: 150

Answers (1)

remi bourgarel
remi bourgarel

Reputation: 9389

You can create a NuGet package, and use the command line to add a reference to your assembly

http://nuget.codeplex.com/

Upvotes: 1

Related Questions