7 lines
76 B
Bash
Executable File
7 lines
76 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in */; do \
|
|
dotnet restore $f
|
|
dotnet build $f
|
|
done
|