4 lines
77 B
Bash
4 lines
77 B
Bash
#!/bin/bash
|
|
|
|
for f in /src/csproj-files/*.csproj; do dotnet restore $f; done
|