diff options
| author | Fuwn <[email protected]> | 2025-10-16 20:23:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-10-16 20:23:12 -0700 |
| commit | c9d655807d0046be1fa2cd19991354b703c55c87 (patch) | |
| tree | ac14221c639baf208c01cc11ee01649d9eef05b7 /justfile | |
| download | cst276-c9d655807d0046be1fa2cd19991354b703c55c87.tar.xz cst276-c9d655807d0046be1fa2cd19991354b703c55c87.zip | |
feat: Implement Assignment 1 functionality
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..976d1b8 --- /dev/null +++ b/justfile @@ -0,0 +1,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 |