在 SharePoint 中部署引用 DLL
如果我们使用 VS 2010 编译将在 asp.net 2.0 环境中运行的 .NET 解决方案,并且我们引用外部 DLL 并计划运行部署并在 Sharepoint 中运行该解决方案,我知道我将需要部署我的 DLL 并创建一个安全控件入口。但是引用的 DLL 又如何呢?我需要 PublicKeytoken 和 dsafecontrol 条目吗?
<SafeControl Assembly="System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=xxxxxxxxx" Namespace="System.Web.UI.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" />
另外,我需要在 Visual Studio 2010 中将目标设置为 2.0 吗?在哪里/如何?
If we compile a .NET solution using VS 2010 that will run in a asp.net 2.0 environment and we reference an external DLL and plan to run deploy and run the solution in Sharepoint I understand I will need to deploy my DLL and create a safecontrol entry. But what about the referenced DLL? Will I need PublicKeytoken an dsafecontrol entry for it?
<SafeControl Assembly="System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=xxxxxxxxx" Namespace="System.Web.UI.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" />
Also, do I need to set the target to 2.0 in visual studio 2010? Where/how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还需要将引用的 dll 部署到 GAC。一旦进入,您就可以获得 PublicKeyToken。
You will need to deploy the referenced dll to the GAC as well. Once it is in there you can get the PublicKeyToken.