aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-08-07 20:09:23 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-08-07 20:09:23 -0400
commit9af5ea65f177bc3fa6e96ecc732251adf5482bfa (patch)
tree855626c30a63b6934bfea387cf1dd3b5950b4398
parent5f76434c98ab0e45447e947c4489ec644f93439a (diff)
Build taskfile update
-rw-r--r--Module.Taskfile.yaml5
-rw-r--r--README.md3
2 files changed, 3 insertions, 5 deletions
diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml
index d729ea3..f5af56c 100644
--- a/Module.Taskfile.yaml
+++ b/Module.Taskfile.yaml
@@ -23,14 +23,13 @@ tasks:
- git remote update
- git reset --hard
- git pull origin {{.BRANCH_NAME}} --verify-signatures
+ #re-write semver after hard reset so build still works properly
+ - dotnet-gitversion.exe /updateprojectfiles
#called by build pipeline to build module
build:
cmds:
- echo "building module {{.MODULE_NAME}}"
-
- #re-write semver after hard reset, before build
- - dotnet-gitversion.exe /updateprojectfiles
#build debug mode first
- task: build_debug
diff --git a/README.md b/README.md
index a4ea756..6957f2e 100644
--- a/README.md
+++ b/README.md
@@ -5,9 +5,8 @@
You can find the documentation for this module and all child extension projects on my website [here](https://www.vaughnnugent.com/resources/software/articles?tags=docs,_VNLib.Plugins.Extensions).
## Builds
-Debug build w/ symbols & xml docs, release builds, NuGet packages, and individually packaged source code are available on my [website](https://www.vaughnnugent.com/resources/software). All tar-gzip (.tgz) files will have an associated .sha384 appended checksum of the desired download file.
+Debug build w/ symbols & xml docs, release builds, NuGet packages, and individually packaged source code are available on my [website](https://www.vaughnnugent.com/resources/software).
## License
All source files in this repository is licensed under the GNU Affero General Public License (or any later version).
See the LICENSE file for more information.
-