Fix the dotnet20 build, use docker for builds, and re-enable dotnet20 in the release script.
7 lines
144 B
Bash
Executable File
7 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
THIS_DIR=$(realpath $(dirname $0))
|
|
|
|
docker run -v $THIS_DIR:/proj microsoft/dotnet:2.0.0-sdk sh -c "cd /proj && ./project-build.sh"
|
|
|