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