2019-04-12 19:45:45 +01:00

4 lines
92 B
Bash

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