- Roslyn Cookbook
- Manish Vasani
- 280字
- 2021-07-15 17:07:38
How to do it...
- Create a C# class library project, say ClassLibrary, in Visual Studio 2017.
- From the top-level menu, navigate to Tools | Extensions and Updates.
- Navigate to Online | Visual Studio Marketplace on the left tab of the dialog to view the available VSIXes in the Visual Studio extension gallery/marketplace:

- Search analyzers in the search textbox in the upper-right corner of the dialog and download an analyzer VSIX, say Refactoring Essentials for Visual Studio:

- Once the download completes, you will get a message at the bottom of the dialog saying that the install will be scheduled to execute once Visual Studio and related windows are closed:

- Close the dialog and then close the Visual Studio instance to start the install.
- In the VSIX Installer dialog, click on Modify to start installation:

- The subsequent message prompts you to kill all the active Visual Studio and satellite processes. Save all your relevant work in all the open Visual Studio instances and click on End Tasks to kill these processes and install the VSIX:

- After installation, restart VS, click on Tools | Extensions And Updates, and verify that Refactoring Essentials VSIX is installed:

- Create a new C# project with the following source code and verify analyzer diagnostic RECS0085 (Redundant array creation expression) in the error list:
namespace ClassLibrary
{
public class Class1
{
void Method()
{
int[] values = new int[] { 1, 2, 3 };
}
}
}

- Build the project from Visual Studio 2017 or the command line and confirm that no analyzer diagnostic shows up in the output window or the command line, respectively, confirming that the VSIX analyzer did not execute as a part of the build.
推薦閱讀
- Oracle從入門到精通(第3版)
- Java Web開發之道
- Java FX應用開發教程
- Dependency Injection in .NET Core 2.0
- Unreal Engine 4 Shaders and Effects Cookbook
- 蘋果的產品設計之道:創建優秀產品、服務和用戶體驗的七個原則
- Python機器學習算法與應用
- BeagleBone Robotic Projects(Second Edition)
- PyQt編程快速上手
- 分布式數據庫HBase案例教程
- Java程序設計入門(第2版)
- Mastering Clojure
- Azure for Architects
- Mastering MeteorJS Application Development
- 亮劍Java Web項目開發案例導航