-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (30 loc) · 842 Bytes
/
Makefile
File metadata and controls
43 lines (30 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
build:
dotnet build
run.simple:
dotnet run --project ./samples/Simple/Simple.csproj | bat -l html -p
run.htmx:
dotnet run --project ./samples/HtmxSample/HtmxSample.csproj
run.web:
dotnet run --project ./samples/Web/Web.csproj
watch.simple:
dotnet watch --project ./samples/Simple/Simple.csproj | bat -l html -p
watch.htmx:
dotnet watch --project ./samples/HtmxSample/HtmxSample.csproj
watch.web:
dotnet watch --project ./samples/Web/Web.csproj
test:
dotnet test
package.all: package.core package.web package.htmx
echo "Package all done"
package.core:
bash ./eng/package-core.sh
package.web:
bash ./eng/package-web.sh
package.htmx:
bash ./eng/package-htmx.sh
publish.all: version.bump package.all
bash ./eng/publish-all.sh
git add .
git commit -m "Publish Version ${VERSION}"
version.bump:
./eng/version-bump.sh