Create a C# project, solution, and test project using the dotnet
command.
dotnetp PROJECT_NAME
or
dotnetp
You will be asked for the project name.
The directory structure is as follows.
│ SampleToolSln.sln
│ Taskfile.yml
│
├─SampleTool
│ Program.cs
│ SampleTool.csproj
│
└─SampleTool.Tests
GlobalUsings.cs
SampleTool.Tests.csproj
UnitTest1.cs
Since Taskfile.yml is generated, you can use Task to execute task run
, task build
, task publish
, etc.