无法删除自定义 SharePoint Web 部件 DLL
我创建了几个自定义 Web 部件,并将 DLL 放入 /bin 文件夹中进行测试。 我现在想要从 /bin 文件夹中删除 DLL,但我不断收到以下错误:
无法删除 xxxxx:访问被拒绝 确保磁盘未满或写保护,并且文件当前未被使用。
我可以重命名 DLL 文件,因此它们没有完全锁定,但是如果我这样做,我会收到错误 无法加载文件或程序集“xxxxxx”或其依赖项之一。 找到的程序集的清单定义与程序集引用不匹配。 (HRESULT 异常:0x80131040)加载站点时显示在浏览器中。
有任何想法吗?
谢谢,
查理
I've created a couple of custom web parts and put the DLLs in the /bin folder for testing. I now want to delete the DLLs from the /bin folder but I keep getting the following error:
Cannot delete xxxxx: Access is Denied
Make sure the disk is not full or write-protected and that the file is not currently in use.
I can rename the DLL files, so they arent completely locked, however if I do I get the error
Could not load file or assembly 'xxxxxx' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) displayed in the browser when load the site.
Any ideas?
Thanks,
Charlie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它们可能被 IIS 锁定。 试试这个:
iisreset /停止
(删除它们)
iis重置/启动
They are probably locked by IIS. Try this:
iisreset /stop
(delete them)
iisreset /start
打开Windows任务管理器。 结束名为“cisv”的进程。 这对我有用。
open windows task manager. end the process named 'cisv'. that worked for me.