Installing Packages from NuGet and MyGet
NuGet
Elsa (pre)releases on the master
branch which are tagged are deployed to NuGet.
MyGet
All commits on the master
branch are deployed to MyGet.
In order to install Elsa packages from MyGet, add the following package feed to your project:
https://www.myget.org/F/elsa-2/api/v3/index.json
The easiest way to do that is by adding a NuGet.config
file to the root of your project/solution folder:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="Elsa Preview Feed" value="https://www.myget.org/F/elsa-2/api/v3/index.json" />
</packageSources>
</configuration>