Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 2.77 KB

README.md

File metadata and controls

40 lines (32 loc) · 2.77 KB

SpecSync plugins

Note: The main branch contains sample plugins for SpecSync v3.4. In order to find samples for SpecSync v3.3, please use the branch specsync-v3.3.

In the project that would like to use the plugin, the plugin package ID, version have to be specified in the SpecSync configuration file (specsync.json). Most of the plugins are published to nuget.org, so SpecSync will automatically load them, but you can also specify a custom NuGet package feed or simply a folder where the plugin package (.nupkg) file is stored.

The sample projects in the plugin folders show how to load the plugins from a local folder.

Some plugins can have plugin parameters as well, please check the plugin pages for the details.

  "toolSettings": {
    "plugins": [
      {
        "packageId": "SpecSync.Plugin.ExcelTestSource",
        "packageVersion": "1.0.0",
        "parameters": {
          "key1": "value1"
        }
      }
    ] 
  },

You can find more information about SpecSync plugins in the SpecSync documentation.

Currently the following plugins are available. For more details about the plugin, click on the name.