Table of Contents

Create Project

To create a project for your Crosser Flow Module you can either create a new project from scratch or use the the official Crosser.Templates The template will create a project with the correct structure and items for you. See the readme for instructions on how to use the template.

Create Project from Scratch

Open a terminal and run the following command to create a new class library project(Replace MyOrg with your organization name).

Warning
  • The name of your project and module needs to be unique within your organization.
  • The project name will become the package name (by default), so make sure that the name is available on nuget It is highly recommended to include your organization name in the package name to avoid name conflicts.
dotnet new classlib -o RandomNumberModule -n MyOrg.FlowModule.RandomNumberModule

You will now have a new folder RandomNumberModule containing your a project MyOrg.FlowModule.RandomNumberModule.

>> Install SDK