mirror of https://github.com/dotnet/tye.git
committed by
GitHub
2 changed files with 9 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
@ECHO OFF |
|||
SETLOCAL |
|||
PowerShell -NoProfile -NoLogo -ExecutionPolicy ByPass -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0build.ps1' -all -nobuild -restore %*; exit $LASTEXITCODE" |
|||
@ -0,0 +1,6 @@ |
|||
#!/usr/bin/env bash |
|||
|
|||
set -euo pipefail |
|||
|
|||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
|||
"$DIR/build.sh" --all --restore --no-build "$@" |
|||
Loading…
Reference in new issue