aboutsummaryrefslogtreecommitdiff
path: root/Module.Taskfile.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Module.Taskfile.yaml')
-rw-r--r--Module.Taskfile.yaml18
1 files changed, 15 insertions, 3 deletions
diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml
index 8d81b0e..bfc8849 100644
--- a/Module.Taskfile.yaml
+++ b/Module.Taskfile.yaml
@@ -51,10 +51,22 @@ tasks:
clean:
cmds:
#clean solution
- - dotnet clean /p:BuildInParallel=true /p:MultiProcessorCompilation=true
- - cmd: powershell -Command "rm {{ .ARCHIVE_FILE_NAME }} --Force"
- ignore_error: true
+ - dotnet clean /p:BuildInParallel=true /p:MultiProcessorCompilation=true
+ - cmd: powershell -Command "rm {{ .ARCHIVE_FILE_NAME }} --Force"
+ ignore_error: true
+ dev-init:
+ desc: 'Configures the module for local development'
+ cmds:
+ #build native libs for development
+ - cd lib/Utils.Memory/vnlib_rpmalloc && task build
+ - cd lib/Utils.Memory/vnlib_mimalloc && task build
+ - cd lib/Utils.Cryptography/monocypher && task build
+ - cd lib/Utils.Cryptography/argon2 && task build
+ - cd lib/Net.Compression/vnlib_compress && task build
+ - cmd: echo "dev init complete"
+ silent: true
+
#Internal tasks
build_debug: