Artifact df57b6a4abdae39ea5d9da8940b5a135e19c222c:
- Executable file Setup/build-netstandard20-release.sh — part of check-in [95766a2582] at 2018-07-23 06:19:00 on branch trunk — Enhancements to POSIX build scripts. (user: mistachkin size: 358)
#!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=NetStandard20 fi pushd "$scriptdir/.." dotnet build SQLite.NET.$SQLITE_NET_YEAR.MSBuild.sln /property:Configuration=Release /property:ConfigurationSuffix=$SQLITE_NET_CONFIGURATION_SUFFIX /property:InteropCodec=false /property:InteropLog=false "$@" popd