具有不同设置的 Visual Studio 个实例
Instances of Visual Studio with different settings
我想 运行 两个具有不同设置的 Visual studio 实例,一个具有更大的字体。
我该怎么做?
当我运行 vs 的第二个实例时
devenv.exe /ResetSettings other.vssettings
该设置会影响 Visual Studio 的所有 运行ning 实例(它们似乎轮询更改的设置)。
您可以使用 different "Root Suffix" 启动 Visual Studio 这将从磁盘的不同注册表树和文件夹读取所有设置:
devenv.exe /RootSuffix OtherInstanceName
这将为您提供一个新的 "vanilla" 配置的 Visual Studio 实例。任何扩展也需要安装到该实例中。要安装 Resharper,请使用以下步骤:
To install to an experimental instance, run the ReSharper unified installer, select the Options button, and enter the name of the instance. The experimental instance does not need to exist before starting the install
https://www.jetbrains.com/help/resharper/sdk/Extensions/Deployment/LocalInstallation/ExperimentalInstance.html
在 Visual Studio 2017 年,这变得更容易了。在那里您可以创建与安装程序完全独立的实例。
我想 运行 两个具有不同设置的 Visual studio 实例,一个具有更大的字体。
我该怎么做?
当我运行 vs 的第二个实例时
devenv.exe /ResetSettings other.vssettings
该设置会影响 Visual Studio 的所有 运行ning 实例(它们似乎轮询更改的设置)。
您可以使用 different "Root Suffix" 启动 Visual Studio 这将从磁盘的不同注册表树和文件夹读取所有设置:
devenv.exe /RootSuffix OtherInstanceName
这将为您提供一个新的 "vanilla" 配置的 Visual Studio 实例。任何扩展也需要安装到该实例中。要安装 Resharper,请使用以下步骤:
To install to an experimental instance, run the ReSharper unified installer, select the Options button, and enter the name of the instance. The experimental instance does not need to exist before starting the install https://www.jetbrains.com/help/resharper/sdk/Extensions/Deployment/LocalInstallation/ExperimentalInstance.html
在 Visual Studio 2017 年,这变得更容易了。在那里您可以创建与安装程序完全独立的实例。