- Roslyn Cookbook
- Manish Vasani
- 318字
- 2021-07-15 17:07:36
Publishing NuGet package and VSIX for an analyzer project
We will show you how to configure, build, and publish a NuGet package and a VSIX package for an analyzer project created in Visual Studio 2017 using the .NET Compiler platform SDK.
Before we start digging into these topics, let's understand the difference between NuGet-based analyzer packages and VSIX-based analyzer packages. NuGet and VSIX are basically two different packaging schemes for the Microsoft development platform to package files such as assemblies, resources, build targets, tools, and so on, into a single installable package.
- NuGet is a more generic packaging scheme. NuGet packages (.nupkg files) can be directly referenced in .NET projects and installed to a specific project or solution using the NuGet package manager in Visual Studio. Analyzer NuGet packages based on the analyzer template project get installed as AnalyzerReferences in the project file, and then get passed onto the compiler command line to be executed during build. Additionally, AnalyzerReferences are resolved at design time by the Visual Studio IDE and executed while code editing to generate live diagnostics.
- A VSIX package is a .vsix file that contains one or more Visual Studio extensions, together with the metadata Visual Studio uses to classify and install the extensions. An analyzer VSIX package can be installed machine-wide or to a specific extension hive, and is enabled for all projects/solutions opened from the Visual Studio hive. Unlike a NuGet package, it cannot be installed specifically to a project/solution and does not travel along with the project sources.
As of Visual Studio 2017, analyzers installed as AnalyzerReferences via NuGet packages execute during both: command line builds and live code editing in Visual Studio. Analyzers installed via Analyzer VSIX packages execute only during live code editing in Visual Studio and not during project build. Hence, only analyzer NuGet packages can be configured to execute in continuous integration (CI) build systems and break the build.
推薦閱讀
- AngularJS入門與進階
- Spring Boot開發與測試實戰
- Learning ROS for Robotics Programming(Second Edition)
- C語言程序設計案例教程(第2版)
- Redis Applied Design Patterns
- The Modern C++ Challenge
- Vue.js前端開發基礎與項目實戰
- Windows系統管理與服務配置
- Mastering Natural Language Processing with Python
- VSTO開發入門教程
- 基于免疫進化的算法及應用研究
- Python金融數據分析
- Reactive Programming With Java 9
- Java Web開發技術教程
- UVM實戰