15 lines
260 B
TOML
15 lines
260 B
TOML
[tools]
|
|
dotnet = "10"
|
|
|
|
[tasks.restore]
|
|
description = "Restore the Project"
|
|
run = "dotnet restore"
|
|
|
|
[tasks.build]
|
|
depends = ["restore"]
|
|
description = "Build the Project"
|
|
run = "dotnet build"
|
|
|
|
[tasks.clean]
|
|
run = "fd -I \"bin|obj\" -td -X rm -r && dotnet clean"
|