I'm looking at an existing script that was written by a previous developer.
In the script itself it has several "using" statements:
namespace WorkflowActivity.Scripting.Script { using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Text; using System.Linq; using CsvHelper; // available on the web using ITS.Data; // custom for my company using System.ComponentModel.DataAnnotations; ...
A few of of these are not from Microsoft, one is available as open source through NuGet and one is developed by my own company.
What process needs to happen to allow Workflow to recognize package/library/assembly like this?
In Visual Studio, I would use a NuGet package manager to install packages