Table of Contents

Install SDK

If you created your project using the Crosser.Templates NuGet package, the SDK is already installed and you can skip this step and move on to >> Create a Module.

Navigate into the folder where you created your project

cd RandomNumberModule

and then install the SDK from nuget.org. Make sure you have nuget.org configured as a package source.

dotnet add package Crosser.EdgeNode.Flows

If you look in the MyOrg.FlowModule.RandomNumberModule.csproj file you should see something like:

<ItemGroup>
  <PackageReference Include="Crosser.EdgeNode.Flows" Version="5.0.0" />
</ItemGroup>

To make sure that everything is ok you can build the project. You should not get any errors.

dotnet build

This is the basics of setting up your project with the Crosser SDK.

>> Create a Module