diff --git a/editor b/editor new file mode 100755 index 0000000..c35329e --- /dev/null +++ b/editor @@ -0,0 +1,18 @@ +#!/bin/bash +DOTNET_VERSION=8.0 +APP_NAME=MBS.Editor +SRC_PATH=editor-dotnet/src/app/$APP_NAME +APP_PATH=$SRC_PATH/bin/Debug/net$DOTNET_VERSION +RELEASE=0 + +if [ ! $RELEASE -eq 1 ] || [ ! -f $APP_PATH/$APP_NAME ]; then + + pushd $SRC_PATH + dotnet build + popd + +fi + +$APP_PATH/$APP_NAME + +