Tagged Questions
The mkbundle tag has no wiki summary.
5
votes
1answer
2k views
How to convert a simple .Net console project a into portable exe with Mono and mkbundle?
I'd like to convert my simple pure .Net 2.0 console utility into a portable exe which I could just put on an USB stick and run without having to worry whether the CLR and framework libraries are ...
2
votes
1answer
266 views
After packaging with mkbundle2, the destination machine is complaining about libmono.so. Why?
I thought the purpose of mkbundle2 was to allow a machine without mono installed to run a mono application. But it does not seem to be packaging libmono.so. I am not sure if it is supposed to or ...
2
votes
2answers
225 views
How is Mono AOT / mkbundle used and optimized? (for reducing VM startup latencies)
I'd like to see if I can reduce VM latencies by using Mono's AOT (ahead of time compiler). How does one run the .so files? (Sorry this is question is so rudimentary; I couldn't find a simple answer on ...
1
vote
1answer
83 views
mkbundle produces non-functional exe
I can successfully build a bundled exe from my MonoDevelop C# project, but when I run the bundle, it doesn't do anything; execution is terminated immediately and silently. What am I doing wrong?
I'm ...
1
vote
1answer
269 views
An issue when running mono 2.10.2 mkbundle on Mac OS X snow leopard
This page has info about Bundles with mkbundle, but when I tried to use it on Mac, I got this error message.
delegate> mkbundle delegate.exe -o delegate
OS is: Darwin
Sources: 1 ...
1
vote
2answers
641 views
Can not compile simple C# application with mkbundle
I have written some console "Hello world"-like app. and have followed c# cywgwin mono mkbundle windows 7 - cannot compile file answer. But I have got:
$ mkbundle -o Fur Furries.exe --deps -z
OS is: ...
1
vote
2answers
1k views
c# cywgwin mono mkbundle windows 7 - cannot compile file
I'm trying to follow the following post to build a c# app with mono embedded, using cygwin.
I am following the guide here: ...
0
votes
1answer
43 views
Mono application in a Mac fails with “System.MissingMethodException: Default constructor not found for type System.Configuration.ExeConfigurationHost”
This code is basically making an HTTP call, when it tries it, it just fails but only when the application is packaged as a Mac application, this does not happen when I run the application inside of ...
0
votes
1answer
37 views
Mono Runtime need to be bundled with Mono Winform app for Mac
I am new to development on Mac.
I migrated one Windows Form App that I have created using C# on Windows platform. I am able to run this app on Mac inside MonoDevelop and run inside IDE without ...
0
votes
1answer
33 views
Skipping incompatible library (mkbundle)
I have a .Net program, which works fine using "mono Program.exe", but now I am trying to use "mkbundle -o prog Program.exe --deps" on the SAME machine, and it returns the following error:
...
0
votes
1answer
182 views
mkbundle and GTK#
I'm trying to use mkbundle so that I can distribute a GTK# application without users needing to install .NET/Mono or GTK#. I've successfully bundled an application which uses winforms, but for some ...
0
votes
0answers
152 views
“Error Initialising the configuration system” when creating TcpClient in Mono
I am trying to run a .net 4.0 application, written and compiled in VS 2010,
on a linux machine which doesn't have mono installed. In order to do this I
have set up a linux dev machine with mono ...
0
votes
1answer
207 views
Distribute application without installing mono
I want to distribute my c# application to each computer on a linux cluster so that I can run it without having to install mono on each computer.
I have spent hours trying to get mkbundle to work, ...
0
votes
2answers
250 views
Trying to run a mono bundled program, but getting missing libgdiplus exception
I am currently trying to get my C# program to run on Linux. Using mono on my Linux machine, the program runs fine. So I used mkbundle and it all compiled and such correctly. But when I try to run the ...
0
votes
2answers
187 views
after using mkbundle2, destination machine can't find libmono.0.dylib
I have a very simple .NET commandline application that I want to port to OS X.
I can run it with "mono app.exe"
However, the destination machines won't have mono installed.
So, I wanted to bundle mono ...
0
votes
1answer
531 views
mkbundle with mono 2.0
I've spent a considerable amount of time trying to make a bundle with mono. I can run the program just fine saying
mono program.exe
but when I say
mkbundle --deps -o test test.exe
It outputs
...
0
votes
1answer
824 views
mono mkbundle windows
I've used mono mkbundle on cygwin, to compile a dot net app, and it works fine. I used the instructions from here ...
0
votes
1answer
998 views
Mono mkbundle tool unable to create binary with complaint that output file is unavailable
As per suggestions from this thread on running C# apps sans .NET I've compiled my app using mono. I built the original app using the latest Visual C# .NET Express Edition. It runs fine on .NET on ...
-1
votes
1answer
140 views
C# program doesn't work under mono in Linux.
I am trying to make my program written in Visual C# 2010 work on Linux. For that, I have used mkbundle feature, so that potential client doesn't have to install mono. Unfortunately I am not ...