##在linux下执行exe可执行文件
###centos下安装mono
wget http://download.mono-project.com/sources/mono/mono-4.2.1.36.tar.bz2
./configure
make
make install
###编译链接CSharp程序
$mono_path/bin/xbuild /p:Configuration="Release Mono" /p:Platform="Any CPU" /t:clean MediaBrowser.Mono.sln
$mono_path/bin/xbuild /p:Configuration="Release Mono" /p:Platform="Any CPU" /t:build MediaBrowser.Mono.sln
xbuild /p:Configuration=Debug /t:clean AppFrame.sln
mono exe文件
###支持ssl mozroots –import –sync
###或者 yum install yum-utils rpm –import “http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF” yum-config-manager –add-repo http://download.mono-project.com/repo/centos/ yum install mono-complete
http://www.mono-project.com/docs/getting-started/install/linux/
##参考