Re: [Mono-winforms-list] how to release a .net winform application by monodevelop?

2011-08-09 Thread Stifu
Copy exe file (and needed DLLs, if any), then run exe with Mono (using
command line mono myapp.exe, or other ways). That's about it.

You could also run your program with Mono for Windows first.


Lynn wrote:
 
 i'm a newbie to monodevelop.
   i have a .net winform app which runs fine on Windows os.i want to
 make it run on linux or mac os,how could i do ? It was design by vs2008.
  thanks!
 


--
View this message in context: 
http://mono.1490590.n4.nabble.com/how-to-release-a-net-winform-application-by-monodevelop-tp3729175p3729226.html
Sent from the Mono - WinForms mailing list archive at Nabble.com.
___
Mono-winforms-list maillist  -  Mono-winforms-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list


Re: [Mono-dev] VS .NET 2005, eh?

2011-08-09 Thread Alex
Hi,

That page is outdated. Only VS 2010 is maintained nowadays.

Regards,
Alex

On Thu, Aug 4, 2011 at 6:02 PM, Sebastian Ramadan s...@geekycode.net wrote:
 The requirements
 http://www.mono-project.com/Compiling_Mono_VSNET#Requirements explicitly
 state that VS .NET 2005 is necessary. Has anyone tried to build using VS
 .NET 2005, lately?

 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Debug mono ODBC ?

2011-08-09 Thread Robert Jordan
On 08.08.2011 21:51, quandary wrote:

 The only thing that is not self explaining is, that if mono requires
 libodbc.so, that is to say package unixodbc-dev, why is it not in the
 dependency list of mono, at least not on Ubuntu/Debian ?

I have no idea how Debian is packaging System.Data, but
it's not trivial to foresee which provider will be
actually used at run-time. Installing *all* unmanaged
dependencies just for fun is not a desired behavior
either.

It's the job of the application to add this dependency.

 It threw a nice libodbc.so not found, however.


 Another funny thing is this libclntsh.so.
  dllmap dll=oci target=libclntsh.so os=!windows/

 I didn't find any such file with the apt-file repository search tool.
 A quick google revealed |ORACLE_HOME| and |LD_LIBRARY_PATH|.
 So I assume that it's System.Data.OracleClient that will go BOOM! if
 that .so is not present.

It will throw a DllNotFoundException. This will remind you
that the Oracle Client libs are not installed and configured
properly :)

Robert

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-list] Monitor: Pluse() and Wait() - alternative ?

2011-08-09 Thread mwessendorf
Hi,

I am building a blocking queue implementation (which behaves like the JAva
LinkedBlockingQueue).

I found the following implementation, which works great:

http://code.google.com/p/netconcurrent/source/browse/trunk/src/Spring/Spring.Threading/Threading/Collections/LinkedBlockingQueue.cs?spec=svn12r=12


However I need to ensure this runs on the PCL (Portable Class Library)
and therefore the above implementation does not work, since Pluse() / Wait()
aren't supported in PCL 

I tried to simulate it with WaitHandle.SignalAndWait(), but that's exactly
what I want.

I saw the Pluse() / Wait() code, and noticed that its implementation is OS
specific, written in C.

I wonder if there is an alternative for Monitor.Pluse() / Monitor.Wait(),
that runs on PCL (or if I can (somehow) build this with language features)

Thanks!

--
View this message in context: 
http://mono.1490590.n4.nabble.com/Monitor-Pluse-and-Wait-alternative-tp3729942p3729942.html
Sent from the Mono - General mailing list archive at Nabble.com.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Monitor: Pluse() and Wait() - alternative ?

2011-08-09 Thread Jonathan Pryor
On Aug 9, 2011, at 9:34 AM, mwessendorf wrote:
 However I need to ensure this runs on the PCL (Portable Class Library)
 and therefore the above implementation does not work, since Pluse() / Wait()
 aren't supported in PCL 

Where can I find a listing of the types and members in the PCL? I find it 
rather odd that Monitor.Pulse() isn't in there, given that it's in Silverlight 
3, 4, WP7, Xbox 360, and every version of .NET ever released [0, 1].

 - Jon

[0] http://msdn.microsoft.com/en-us/library/system.threading.monitor(VS.95).aspx
[1] http://msdn.microsoft.com/en-us/library/system.threading.monitor.pulse.aspx

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list