如何告诉 Visual Studio 自动加载某些引用?
假设我有一些带有一些基本类的低级实用程序集。
然后我有其他使用这些类的更高级别的程序集,可能将它们作为参数并返回它们。
现在,在解决方案的应用程序级别,如果您添加一个以这种方式使用较低级别程序集的较高级别程序集,如果您不添加对较低级别程序集的引用,则应用程序将无法编译。
有没有办法表明对程序集的引用需要存在或添加其他引用?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建 NuGet 包,并使用命令行添加对程序集的引用
http://nuget.codeplex.com /
You can create a NuGet package, and use the command line to add a reference to your assembly
http://nuget.codeplex.com/