gpt4 book ai didi

c# - 如何在 Visual Studio 中使用修改后的 Roslyn

转载 作者:太空狗 更新时间:2023-10-29 23:14:56 26 4
gpt4 key购买 nike

C# 对我来说还不够,所以我利用了 newly-open sourced Roslyn扩展它,比如 modifying it to use French quotes .

但我不想在命令行上构建新的法文引用文件!我想要智能感知!我想要一个漂亮的用户界面!简而言之,我想让 Visual Studio 使用我的 Roslyn,而不是 Microsoft 的。

我可以这样做吗?如果是这样,如何

最佳答案

直接引自 this link在你的问题中:

ADVANCED USAGE

It is also possible to update your copy of Visual Studio to use your own built version of Roslyn (for example, to see how the IDE reacts to your changes), but it’s slightly complicated:

First of all, you’ll need to use the release fork, not the master fork. This is because the compiler code is constantly changing in reaction to feedback, and that includes changes to the APIs that are used by the non-open IDE bits in the Roslyn preview in order to access compiler information (until the APIs get locked down as we get closer to completion). When these APIs change, the ability to communicate between the two is lost. The release fork, however, accurately reflects the state of the code at the time that the Roslyn preview was snapped, and so is safe to use as a baseline for this sort of thing. (You can see the fork on the Roslyn CodePlex site by choosing “Source Code” and then opening the “Browsing changes in” dropdown – it’s called “releases\build-preview.”)

To switch to this fork in Git, you will need to execute the following two commands from an appropriate Git prompt in your enlistment:

Git fetch

Git checkout – track origin/releases/build-preview

您的 git 存储库现在将包含 发布/构建预览分支。完成此操作后,您可以切换 使用 Git checkout master 和 git 在分支之间来回切换 checkout 发布/构建预览。 (有关 Git 使用的详细信息超出了 本博客的范围;看 http://www.git-scm.com/book/en/Git-Branching-Remote-Branches更多 关于 Git 分支的信息。)

其次,您需要禁用 Visual Studio 的强名称程序集 首先检查相关程序集。有一个脚本可以帮助 有了它,您可以在以下位置找到 checkin 源代码 Src/Tools/Microsoft.CodeAnalysis.Toolset.Open/Scripts/Prepare.bat.

完成所有这些后,进行更改。然后,在构建之后,确保 将 CompilerPackage 设置为启动项目,然后 F5/Ctrl+F5 启动包含更改的 VS 实例。

请注意,我们永远不会接受发布的拉取请求 fork——我们需要保持原始状态并准确反射(reflect)状态 相对于 Roslyn 预览位的代码。任何你实际上 想要考虑提交将需要移植到 fork 上 首先从 master 创建。

前方有趣的时刻。虽然我对自己在一家公司使用完全定制的编译器来做非常糟糕的事情感到有些恐惧。射自己脚的枪刚刚升级了...

关于c# - 如何在 Visual Studio 中使用修改后的 Roslyn,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22857422/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com