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 l开发者_StackOverflow中文版ower-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?
You can create a NuGet package, and use the command line to add a reference to your assembly
http://nuget.codeplex.com/
精彩评论