12 строки
381 B
Bash
Executable File
12 строки
381 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd src/SamplesApp/SamplesApp.Wasm
|
|
|
|
export NUGET_PACKAGES=/workspace/.nuget
|
|
|
|
GITPOD_HOSTNAME=`echo $GITPOD_WORKSPACE_URL | sed -s 's/https:\/\///g'`
|
|
|
|
msbuild /r /bl SamplesApp.Wasm.csproj /p:UnoSourceGeneratorUseGenerationHost=true /p:UnoSourceGeneratorUseGenerationController=false /p:UnoRemoteControlPort=443 "/p:UnoRemoteControlHost=53487-$GITPOD_HOSTNAME"
|
|
|
|
popd
|