4 lines
92 B
Bash
4 lines
92 B
Bash
#!/bin/bash
|
|
|
|
for f in $(find /src/src -type f -name "*.csproj"); do dotnet restore $f; done
|