成功安装后,在扩展选项卡中缺少Resmanper
我使用Choco安装了Resharper,但是当我打开VS时,ResMater在Extensions Tab中不可用。我该如何添加?
I installed resharper using choco but when I opened VS then resharper is not available in Extensions tab. How can I add it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是Chocolatey的忠实拥护者,我曾经以这种方式安装R#和Visual Studio。但是,我停止这样做。
在我的计算机上,我有一个常规的非Admin帐户(例如,对于我的日常开发任务,例如
MU88
)和一个管理员帐户(例如admin
)。由于Chocolatey强烈建议使用Admin特权运行所有Choco
命令,因此我还通过执行choco install resharper
在admin> admin
下安装了r#。这样,r#被安装在admin
的用户配置文件中,并且缺少mu88
(我与Visual Studio一起工作)。我还尝试使用我的
mu88
帐户下的巧克力安装r#,这迫使我运行所有choco升级
命令两次:一次:admin> admin
和一次用于MU88
。Now I'm using the JetBrains Toolbox app (installed via
choco install jetbrainstoolbox< /代码>在
admin
下),在我的mu88
帐户下工作。这么长的故事,请确保您的巧克力装置和Visual Studio个人资料在同一帐户下运行。
I'm a big fan of Chocolatey, and I used to install R# and Visual Studio this way too. However, I stopped working this way.
On my machine, I have a regular non-admin account (e. g.
mu88
, for my everyday development tasks) and an admin account (e. g.admin
). Since Chocolatey highly recommends running allchoco
commands with admin privileges, I also installed R# by executingchoco install resharper
underadmin
. This way, R# gets installed in the user profile ofadmin
and is missing formu88
(where I'm working with Visual Studio).I also tried to install R# using Chocolatey under my
mu88
account, which forced me to run allchoco upgrade
commands twice: once foradmin
and once formu88
.Now I'm using the JetBrains Toolbox app (installed via
choco install jetbrainstoolbox
underadmin
), which works smoothly under mymu88
account.So long story short, ensure your Chocolatey installation and Visual Studio profile are running under the same account.