summaryrefslogtreecommitdiff
path: root/justfile
blob: 976d1b8a3e0603847933626aa175bdfdf9f4bb1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name := "MorgSimulator"

alias fmt := format

dotnet_execute command:
  dotnet {{ command }} ./{{ name }}.csproj --verbosity diagnostic

format:
  just dotnet_execute format

build:
  just dotnet_execute build

run:
  just dotnet_execute run