英文:
How can I install the Fantomas Tool with the latest version?
问题
我安装了全局的F#格式化工具fantomas,有以下内容:
dotnet tool list -g
Package Id Version Commands
-----------------------------------------
fantomas-tool 4.7.9 fantomas
更新到今天的最新版本:
dotnet tool update fantomas-tool -g
Tool 'fantomas-tool' 已重新安装为最新的稳定版本(版本 '4.7.9')。
所以没有变化。我怎样才能获得一个更新的版本呢?仓库或文档中都没有版本列表,只提及了隐含的版本5.2。
我尝试过以下命令:
dotnet tool update fantomas-tool -g --version 5
或者 "5.2" 或者 "v5.2",但都没有帮助。我找不到任何文档来解释如何安装更新版本,然而文档中到处都在谈论更新的版本。
英文:
I installed the F# formatter tool, fantomas, globally and have this:
dotnet tool list -g
Package Id Version Commands
-----------------------------------------
fantomas-tool 4.7.9 fantomas
Updating as of today gives
dotnet tool update fantomas-tool -g
Tool 'fantomas-tool' was reinstalled with the latest stable version (version '4.7.9').
So no change. How can I ever get a later version? There is no version list in the repo or in the docu as well, only implicity version 5.2 is mentioned.
I tried commands like
dotnet tool update fantomas-tool -g --version 5
or "5.2" or "v5.2" but nothing helps. I cannot find any doc explaining how to install a later version, while the doc talks everywhere about the later versions.
答案1
得分: 2
在版本5中,包的名称已从fantomas-tool
更改为fantomas
。因此,您应该卸载fantomas-tool
并安装fantomas
代替。
英文:
In version 5, the name of the package has changed from fantomas-tool
to just fantomas
. So you should uninstall fantomas-tool
and install fantomas
instead.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论