A custom template for dotnet new
to create a new F# worker service project.
To install fsworker, use the dotnet new -i|--install command
dotnet new --install Template.Worker.FSharp
To install a specific version use ::
followed by the desired version
dotnet new --install Template.Worker.FSharp::1.0.0
To create a project using the fsworker worker, use the dotnet new command and specify fsworker
as the template
dotnet new fsworker
By default, a project will be created using the name of the directory dotnet new
was executed in. To specify the project name use the -n|--name option
dotnet new fsworker -n Demo.FSharp.Worker