2
0
Files
2026-01-17 07:52:05 +00:00

9 lines
200 B
Bash
Executable File

#!/bin/bash
# Set .NET environment for desktop launcher compatibility
export DOTNET_ROOT="$HOME/.dotnet"
export PATH="$DOTNET_ROOT:$PATH"
cd "$(dirname "$0")/bin/Debug/net9.0"
exec ./ShellDemo "$@"