REALYYA admin 编译成功,移植后可以编译,烧录,断点debug,如下是命令
#!/bin/bash
DIST_DIR="./dist"
echo
echo "---- publish for osx-arm64 ----"
echo
dotnet publish ./eide_tools.sln -o $DIST_DIR/darwin/unify_builder/arm64 \
-c Release --no-self-contained \
-r osx-arm64 \
--framework net6.0 \
/property:GenerateFullPaths=true \
/consoleLoggerParameters:NoSummary
echo
echo "all done !"
echo