File size: 251 Bytes
7b715bc | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash
set -e
# Forces sourcelink to work during the build.
export CI=true
export DeterministicSourcePaths=true
dotnet build Src/Support/GoogleApisClient.sln -c Release
dotnet pack Src/Support/GoogleApisClient.sln -c Release -o NuPkgs/Support
|