为什么我需要 SharpSvn-DB44-20-win32 和 SharpSvn-Sasl21-23-win32 作为单独的 DLL?
我使用 SharpSVN 作为 FluentMigrator 分支的一部分(添加对 FM 的源代码控制调用)。当我构建时,我发现需要这两个程序集才能编译代码:
SharpSvn-DB44-20-win32
SharpSvn-Sasl21-23-win32
我想知道为什么这些文件在需要时不作为资源烘焙。需要引入 3 个程序集才能让 SharpSVN 工作似乎很奇怪。我做错了什么吗?
I'm using SharpSVN as part of a FluentMigrator branch (to add in source control calls to FM). When I build, I find that these two assemblies are required to get the code to compile:
SharpSvn-DB44-20-win32
SharpSvn-Sasl21-23-win32
I'm wondering why these files aren't baked in as resources if they're needed. It seems odd to need to pull in 3 assemblies to get SharpSVN to work. Am I doing something wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为它们是可选的,并且它们的许可证也要求是可选的(否则 Subversion 和 SharpSvn 无法获得 Apache 许可)。
您可能在编译时需要它们,而它们在运行时是可选的。
Because they're optional, and their license requires to be optional (otherwise Subversion and SharpSvn couldn't be Apache licensed).
It's likely that you need them at compile time, and they're optional at runtime.