惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
罗磊的独立博客
雷峰网
雷峰网
量子位
V
Visual Studio Blog
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
月光博客
月光博客
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
腾讯CDC
Engineering at Meta
Engineering at Meta
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
A
About on SuperTechFans

博客园 - gucs

《应用框架的设计与实现——.NET平台》书评 《WCF Unleashed》的 AzRoles 演示代码 Tech Ed 2009,胡思乱想 Mac 双系统的时间设置问题 使用 gVim 遇到的第一个问题 Google notebook for Firefox 3.5 Fiddler & localhost 关于 TableLayoutPanel 的 Scroll bar Powerdesigner 12.5 对 SQL Server 2005 做反向工程时发生错误 VisualSVN Server 的 Apache 配置 ExplorerXP 在 Vista 下的设置 禁用 Nero ShowTime 快捷键 使用 ModalPopupExtender 和 UpdatePanel 应注意的问题 NHibernate 和 ODP.NET 手动注册 DevExpress 8.2.3 控件到 Visual Studio 工具箱 PPStream caused an Access Violation (0xc0000005) in module VSFilter.dll at 001b:07610441. 隐藏 Windows Vista 的 Explorer 菜单栏 ReadOnly Controls do not post back properly 使用 ExtJs Extender Controls 遇到的第一个错误
ReSharper 2.0.4 安装时的 1722 错误
gucs · 2008-12-17 · via 博客园 - gucs

要帮同事调公司的博客,这是基于 .Text 搭的环境,于是我在 VPC 里安装了 VS2003。用惯了 VS2005 + ReSharper,突然回到几年前的 IDE 环境里,颇不适应,于是我想起了 ReSharper,针对 VS2003 的最新版是 2.0.4。

安装到最后时,Command 窗口提示正在招行 InstallUtil.exe,我按照提示信息等了很多个 several minutes,任我按空格、驾车就是没办法,最后不得不 Kill 了这个窗口。ReSharper 提示我安装失败,错误信息是 1722。

反复试了三两遍,装了 VS2003 SP1,问题依旧。最后,搜索到了这个帖子,如法炮制,搞定!

In order for ReSharper installer to work properly, some VS.NET assemblies (like Extensibility) should be in the Global Assembly Cache (GAC). They are normally installed there during VS.NET installation. However, some faulty installers may remove these assemblies from the GAC. So ReSharper installer will be unable to register its own components for Interop and therefore will fail. Workaround is very simple: install necessary assemblies (usually only Extensibility) by running

"[VSInstallDir]\SDK\v1.1\Bin\gacutil.exe" /i "[VSInstallDir]\Common7\IDE\PublicAssemblies\extensibility.dll"

where VSInstallDir is the root VS.NET 2003 installation folder.

我实在是想不明白,为什么 extensibility.dll 这个文件就没被注册到 GAC 呢?以前没有出现过类似问题啊,怪哉。