monodevelop cannot execute project

前端 未结 5 1461
情歌与酒
情歌与酒 2021-02-11 02:36

i have install monodevelop and write a hello world program in C# console but when in run configuration i choose run in external console check box and click on run button monodev

5条回答
  •  無奈伤痛
    2021-02-11 03:12

    Here's an automated two-liner for the "copy xterm" approach (tested on Ubuntu 16.04):

    ldd `which xterm` | awk '{if ($2 == \"=>\") print $3}' | grep / | xargs -I{} cp -Lnv {} .local/share/flatpak/runtime/org.freedesktop.Sdk/x86_64/1.4/active/files/lib/
    cp -nv `which xterm` .local/share/flatpak/runtime/org.freedesktop.Sdk/x86_64/1.4/active/files/bin/
    

提交回复
热议问题