Re: [Mono-dev] [PATCH] rootcontext

2007-08-01 Thread Raja R Harinath
Hi,

Raja R Harinath [EMAIL PROTECTED] writes:

 Jb Evain [EMAIL PROTECTED] writes:

 In /nostdlib mode, mcs loads predefined types, and validates that
 System.Enum is a class instead of a ValueType. Attached is a patch to
 fix that.

 -- 
 Jb

 Index: rootcontext.cs
 ===
 --- rootcontext.cs   (revision 82492)
 +++ rootcontext.cs   (working copy)
 @@ -328,6 +328,7 @@
  System.Single,  System.Double,
  System.Char,
  System.Decimal, System.Void,
 +System.Enum,
  System.RuntimeFieldHandle,
  System.RuntimeArgumentHandle,
  System.RuntimeTypeHandle,
 @@ -345,7 +346,6 @@
  // These are classes that depends on the core interfaces
  //
  string [] classes_second_stage = {
 -System.Enum,
  System.String,
  System.Array,
  System.Reflection.MemberInfo,

 I don't remember if this went in, but I think it's reasonable.

 You probably need to move the loading of System.Enum to the first stage,
 if some real 'enum' became needed as part of the bootstrap.

Oops, I'm an idiot.  I misunderstood the patch.  It's wrong, since
System.Enum is a reference type.

Maybe it's better to move the loading of System.Enum closer to
InitEnumUnderlyingTypes(), though.

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


Re: [Mono-dev] [PATCH] rootcontext

2007-08-01 Thread Raja R Harinath
Hi,

Jb Evain [EMAIL PROTECTED] writes:

 In /nostdlib mode, mcs loads predefined types, and validates that
 System.Enum is a class instead of a ValueType. Attached is a patch to
 fix that.

 -- 
 Jb

 Index: rootcontext.cs
 ===
 --- rootcontext.cs(revision 82492)
 +++ rootcontext.cs(working copy)
 @@ -328,6 +328,7 @@
   System.Single,  System.Double,
   System.Char,
   System.Decimal, System.Void,
 + System.Enum,
   System.RuntimeFieldHandle,
   System.RuntimeArgumentHandle,
   System.RuntimeTypeHandle,
 @@ -345,7 +346,6 @@
   // These are classes that depends on the core interfaces
   //
   string [] classes_second_stage = {
 - System.Enum,
   System.String,
   System.Array,
   System.Reflection.MemberInfo,

I don't remember if this went in, but I think it's reasonable.

You probably need to move the loading of System.Enum to the first stage,
if some real 'enum' became needed as part of the bootstrap.

So, please commit.

- Hari

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


[Mono-dev] Mono 1.2.5

2007-08-01 Thread Szentpali Janos
Is there a point in complaining (reporting) that monodevelop (included 
in Mono 1.2.5 preview) doesn't work on other platforms than the 
officially supported ones (I'm talking Zenwalk)?

János

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


Re: [Mono-dev] unable to run VB.NET or C# applications on OS X

2007-08-01 Thread Stefan Noack
hi

I solved this problem by replacing the code generated by VS. as the call
is done by some internal compiler generated i hade to replace something
in Application.Designer.vb [i think it was in Protected Overrides Sub
OnCreateMainForm()]...

you may use a reflector or disassmbler run on your own ap to see, where
you have to change the code because i cannot remember what the change
was

i convince that the call also is only done if an exception occurs during
form generation - but as there may be NotImplementedExceptions or
something like that, you would maybe like to avoid the call because you
want to see the real problem exception.

the problem is that your modifications may be undone when you modify
application properties and code is auto-generated again.

noah

Am Montag, den 30.07.2007, 14:51 -0400 schrieb Alan McGovern:
 Quick solution: Don't use VisualBasic dll's in your C# application.
 Problem solved. Alternatively refactor your code so you don't use the
 GetResourceString method found there. Is there an alternative method
 of getting at the required data? 
 
 Even if the method were to be released in the next mono version (which
 it won't be, as it's too late to get it implmented) you couldn't rely
 on it being in linux distributions for quite a few months.
 
 Alan.
 
 On 7/30/07, Jouini Karim [EMAIL PROTECTED] wrote:
 Please, i'm running OS X 10.4
 with mono 1.2.4 but i'm unable to run any VB.NET or C#
 application with GUI
 (even simple application)
 
 for VB.NET (the most urgent) i get 
 
 Unhandled Exception : System.notimplementedException at
 Microsoft.VisualBasic.CompilerServices.Utils.GetResourceString
 
 a small run of MoMa indicates me that it's unhandled ...
 
 will it be soon ? 
 because it's needed for any winform application.
 
 Thanks
 ___
 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

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


Re: [Mono-dev] Mono 1.2.5

2007-08-01 Thread Lluis Sanchez
El dc 01 de 08 del 2007 a les 13:49 +0300, en/na Szentpali Janos va
escriure:
 Is there a point in complaining (reporting) that monodevelop (included 
 in Mono 1.2.5 preview) doesn't work on other platforms than the 
 officially supported ones (I'm talking Zenwalk)?

If it is a packaging problem (e.g. you install the package and it
doesn't work at all due to missing dependencies) you should report the
problem to whoever created the package.

If you find bugs in when running MonoDevelop, you should report them in
http://bugzilla.ximian.com.

Lluis.

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


Re: [Mono-dev] next version

2007-08-01 Thread Paolo Molaro
On 07/30/07 Jouini Karim wrote:
 please, when will the next mono version be released ?

We have test packages available at:
http://mono.ximian.com/monobuild/preview/download-preview/

They will be released when enough regression testing has been done on
them.

lupus

-- 
-
[EMAIL PROTECTED] debian/rules
[EMAIL PROTECTED] Monkeys do it better
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] C# 3.0

2007-08-01 Thread Onur Gumus
wow. do we have to use language:xlinq compiler option do use these features
?
and what about inferred types ?

On 8/1/07, Marek Safar  wrote:

 Hi,
  When will be C# 3.0 will be complete and included in main package?
 Some features like

 * extension methods,
 * automatically generated properties,
 * implicitly typed arrays,
 * implicitly typed local variables,
 * lambda expressions

 will be included in the upcoming release 1.2.5 and remaining features
 should
 hit release after that.

 Regards,
 Marek

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




-- 
Warning: If you are reading this then this warning is for you. Every word
you read of this useless fine print is another second off your life. Don't
you have other things to do? Is your life so empty that you honestly can't
think of a better way to spend these moments? Or are you so impressed with
authority that you give respect and credence to all that claim it? Do you
read everything you're supposed to read? Do you think every thing you're
supposed to think? Buy what you're told to want? Get out of your apartment.
Meet a member of the opposite sex. Stop the excessive shopping and
masturbation.Quit your job. Start a fight. Prove you're alive. If you don't
claim your humanity you will become a statistic. You have been warned - Onur
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] C# 3.0

2007-08-01 Thread Marek Safar
Onur Gumus wrote:
 wow. do we have to use language:xlinq compiler option do use these 
 features ?
 and what about inferred types ?
Yes, you have to use -langversion:linq to enable C# 3.0 features. This 
is temporary
and 3.0 will become default option when we finish all features and the 
code will be
robust enough.

Full 3.0 type inference has not made it into 1.2.5. However, it just 
landed on SVN.
If you are interested, you can get it from SVN and help us testing.

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


Re: [Mono-dev] Anyone is using Mono with ARM?

2007-08-01 Thread Paolo Molaro
On 07/31/07 josepascual wrote:
 Any one is using mono with ARM?
 Any comment/benchmark about mono for EABI?
 is more quickly in EABI? same speed than non-EABI?

If you're interested in benchmarking you should setup the same system
with both the old abi and the eabi and test yourself.
Many people use mono on arm, including me on both old abi and eabi
systems, but they are different systems with different cpus and RAM, so
it doesn't make sense to compare numbers from them.

lupus

-- 
-
[EMAIL PROTECTED] debian/rules
[EMAIL PROTECTED] Monkeys do it better
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] unable to run VB.NET or C# applications on OS X

2007-08-01 Thread Andy Hume
Unfortunately I can't offer any advice on OS X questions -- I know
nothing (apart from google; maybe
http://www.mono-project.com/Problem:GDIPlusInit#MacOS_X).

For general advice on porting to Mono however, I agree with the advice
in http://www.mono-project.com/Guide:_Porting_Winforms_Applications  As
you are used to Windows, ignore OS X for now, for the first period only
test with Mono on *Windows*.  Get confortable with that, or get to the
stage where your app runs there.

*Only* once you are comfortable with Mono on Windows, having made any
changes to get the app working (partially?) there, then start looking at
Mono on your OS X box.

Andy


 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Jouini Karim
 Sent: 31 July 2007 09:24
 To: [EMAIL PROTECTED]
 Cc: mono-devel-list@lists.ximian.com
 Subject: Re: [Mono-dev] unable to run VB.NET or C# 
 applications on OS X
 
 Hi, thanks for your answer,
 Yes I’m using the winforms.
 But I’m a real newbie on OS X (I’m used to windows).
 
 How do I know if X11 is installed?
 
 know i get a different error :
 System.TypeInitializationException : An exception was thrown 
 by the type initializer for System.Drawing.GDIPlus - 
 System.DllNotFoundException : 
 /Library/Frameworks/Mono.framework/Versions/1.2.5/lib/libgdiplus.dylib
 
 but this library seems available ... what can i do ?
 
 And can't mono remove this dependency (to X11) ?
 
 Jouini Karim
 
 PS: please forgive my poor English, as I’m French ;)
 
  -Original Message-
  From: [EMAIL PROTECTED] 
  [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of 
  Jouini Karim
  Sent: lunes, 30 de julio de 2007 16:22
  To: mono-devel-list@lists.ximian.com
  Subject: [Mono-dev] unable to run VB.NET or C# applications on OS X
 
  Please, i'm running OS X 10.4
  with mono 1.2.4 but i'm unable to run any VB.NET or C# application 
  with GUI (even simple application)
 
  for VB.NET (the most urgent) i get
 
  Unhandled Exception : System.notimplementedException at 
  Microsoft.VisualBasic.CompilerServices.Utils.GetResourceString
 
  
 
  I implemented this earlier this year, so make sure you use 
 the latest 
  version of the Microsoft.VisualBasic.dll (it's not necessarily 
  included when you installed mono 1.2.4).
 
  To get the latest version of Microsoft.VisualBasic.dll go here:
  http://mono.ximian.com/monobuild/preview/download-preview/, select 
  your architecture and the mono-basic package.
   
  Regarding the UI applications I suppose you're using the 
  System.Windows.Forms.dll, which requires X11 on OSX for the moment, 
  but we'd need more information to help you.
 
  Rolf
 

  a small run of MoMa indicates me that it's unhandled ...
 
  will it be soon ?
  because it's needed for any winform application.
 
  Thanks
  ___
  Mono-devel-list mailing list
  Mono-devel-list@lists.ximian.com
  http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 
  --
  No virus found in this incoming message.
  Checked by AVG Free Edition.
  Version: 7.5.476 / Virus Database: 269.10.25/926 - Release Date:
  29/07/2007 23:14
  
 
 
 

 
 ___
 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


[Mono-dev] Having difficulty porting to OS X.

2007-08-01 Thread bobrien
Hi, I wrote a CSharp app using Visual Studio 2005 Express Edition.  I
brought the exe file over to the mac where I have installed the latest
version of Mono.

I get some error messages from mono and was hoping someone could help me
 work these out.

This is the log:

users-computer:~/Desktop/Release user$ mono Analyze2Dicom.exe

Unhandled Exception: System.TypeInitializationException: An exception was
 thrown by the type initializer for System.Windows.Forms.Form ---
 System.Reflection.TargetInvocationException: Exception has been thrown by
 the target of an invocation. --- System.TypeInitializationException: An
 exception was thrown by the type initializer for System.Drawing.GDIPlus
 --- System.DllNotFoundException:
/Library/Frameworks/Mono.framework/Versions/1.2.4/lib/libgdiplus.dylib
  at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup
(ulong,System.Drawing.GdiplusStartupInput,System.Drawing.GdiplusStartupOutput)
  at System.Drawing.GDIPlus..cctor () [0x0] --- End of inner exception
stack trace ---

  at 0x0 unknown method
  at System.Drawing.Image.InitFromStream (System.IO.Stream stream) [0x0]
 at System.Drawing.Image..ctor
(System.Runtime.Serialization.SerializationInfo info, StreamingContext
 context) [0x0]
  at System.Drawing.Bitmap..ctor
(System.Runtime.Serialization.SerializationInfo info, StreamingContext
 context) [0x0]
  at 0x0 unknown method
  at (wrapper managed-to-native)
System.Reflection.MonoCMethod:InternalInvoke (object,object[])
  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters,
 System.Globalization.CultureInfo culture) [0x0] --- End of inner
 exception stack trace ---

  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters,
 System.Globalization.CultureInfo culture) [0x0]
  at System.Reflection.MethodBase.Invoke (System.Object obj,
System.Object[] parameters) [0x0]
  at System.Runtime.Serialization.ObjectRecord.LoadData
(System.Runtime.Serialization.ObjectManager manager, ISurrogateSelector
 selector, StreamingContext context) [0x0]
  at System.Runtime.Serialization.ObjectManager.DoFixups () [0x0]
 at
System.Runtime.Serialization.Formatters.Binary.ObjectReader.ReadNextObject
 (System.IO.BinaryReader reader) [0x0]
  at
System.Runtime.Serialization.Formatters.Binary.ObjectReader.ReadObjectGraph
 (System.IO.BinaryReader reader, Boolean readHeaders, System.Object
 result, System.Runtime.Remoting.Messaging.Header[] headers) [0x0]
  at
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.NoCheckDeserialize
 (System.IO.Stream serializationStream,
System.Runtime.Remoting.Messaging.HeaderHandler handler) [0x0]
  at
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize
 (System.IO.Stream serializationStream) [0x0]
  at System.Resources.ResourceReader.ReadNonPredefinedValue (System.Type
exp_type) [0x0]
  at System.Resources.ResourceReader.ReadValueVer1 (System.Type type)
[0x0]
  at System.Resources.ResourceReader.ResourceValue (Int32 index) [0x0]
 at System.Resources.ResourceReader+ResourceEnumerator.get_Value ()
[0x0]
  at System.Resources.ResourceSet.ReadResources () [0x0]
  at System.Resources.ResourceSet.GetObject (System.String name, Boolean
ignoreCase) [0x0]
  at System.Resources.ResourceManager.GetObject (System.String name,
System.Globalization.CultureInfo culture) [0x0]
  at System.Resources.ResourceManager.GetObject (System.String name)
[0x0]
  at System.Windows.Forms.Locale.GetResource (System.String name) [0x0]
 at System.Windows.Forms.Form..cctor () [0x0] --- End of inner
exception stack trace ---

  at 0x0 unknown method
  at Analyze2Dicom.Form1..ctor () [0x0]
  at (wrapper remoting-invoke-with-check) Analyze2Dicom.Form1:.ctor ()
 at Analyze2Dicom.Form1.Main () [0x0]





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


Re: [Mono-dev] Having difficulty porting to OS X.

2007-08-01 Thread R. Tyler Ballance
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


On Aug 1, 2007, at 1:42 PM, [EMAIL PROTECTED] wrote:

 Hi, I wrote a CSharp app using Visual Studio 2005 Express Edition.  I
 brought the exe file over to the mac where I have installed the latest
 version of Mono.

 I get some error messages from mono and was hoping someone could  
 help me
  work these out

Applications using Windows Forms on Mac OS X will have turbulent  
waters to pass through. Unfortunately the GDI+ stuff is still based  
off of X11. Feel free to help port Windows Forms to use Quartz as a  
backend ;)


Cheers,

- -R. Tyler Ballance

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (Darwin)

iD8DBQFGsP0RA2GmJ0VpG78RAvlzAJsHbAhY6fs78oFWvaFgaZHTzAkm6ACfaait
rvpE0nbiCLcvBXXSfwXKfas=
=qm/z
-END PGP SIGNATURE-
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Having difficulty porting to OS X.

2007-08-01 Thread Will Johansson
I've actually been working on the Quartz backend with some success,  
but it's nowhere close to being done!

bobrein, are you trying to use the X11 or Quartz backend? Out of the  
box mono should be able to use X11 for SWF on Mac OS X.

Will

On Aug 1, 2007, at 4:37 PM, R. Tyler Ballance wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1


 On Aug 1, 2007, at 1:42 PM, [EMAIL PROTECTED] wrote:

 Hi, I wrote a CSharp app using Visual Studio 2005 Express Edition.  I
 brought the exe file over to the mac where I have installed the  
 latest
 version of Mono.

 I get some error messages from mono and was hoping someone could
 help me
  work these out

 Applications using Windows Forms on Mac OS X will have turbulent
 waters to pass through. Unfortunately the GDI+ stuff is still based
 off of X11. Feel free to help port Windows Forms to use Quartz as a
 backend ;)


 Cheers,

 - -R. Tyler Ballance

 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.7 (Darwin)

 iD8DBQFGsP0RA2GmJ0VpG78RAvlzAJsHbAhY6fs78oFWvaFgaZHTzAkm6ACfaait
 rvpE0nbiCLcvBXXSfwXKfas=
 =qm/z
 -END PGP SIGNATURE-
 ___
 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


[Mono-dev] Mono 1.2.5 Preview 2

2007-08-01 Thread Wade Berrier
Hi,

Mono 1.2.5 preview 2 sources, packages, and installers are available at:

http://mono.ximian.com/monobuild/preview/download-preview/

At some point, the release notes for 1.2.5 will be available at:

http://go-mono.com/archive/1.2.5/

If no critical bugs are found after the preview period, these same
downloads will be posted on mono-project.com for general consumption.

If there are critical bugs found, only those packages/sources will be
updated before publishing to mono-project.com.

Since this release hasn't been pushed to our main download server, some
sources may be retagged if critical bugs are found.  Those tags are not
final until we publish to mono-project.com.

Changes with preview 2 over preview 1:

MonoDevelop 0.15
IPCE r6
cocoa-sharp 0.9.4
redcarpet/opencarpet support dropped (all the distros we support can install 
packages via yast or yum)
Several critial bugs fixed that were found in preview1 (Thanks for testing!!)
ikvm 0.34.0.2

Wade

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


[Mono-dev] Call for release notes.

2007-08-01 Thread Miguel de Icaza
Hello,

The draft release notes for the upcoming Mono 1.2.5 has been
uploaded here:

http://go-mono.com/archive/1.2.5/

Please let me know of any missing functionality or other important
things that we should mention on the release notes.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Having difficulty porting to OS X.

2007-08-01 Thread Brian OBrien

Will Johansson wrote:
I've actually been working on the Quartz backend with some success, 
but it's nowhere close to being done!


bobrein, are you trying to use the X11 or Quartz backend? Out of the 
box mono should be able to use X11 for SWF on Mac OS X.



for what I'm doing X11 is fine... Quartz would look nicer but...
I have a feeling that the path to the libraries is what is wrong but I'm 
not sure about what environment variable should be set and
where to set it for all users of the system.  I don't know what shell 
the app is going to be launched from.  I hope to use macpac

to make the application...


Will

On Aug 1, 2007, at 4:37 PM, R. Tyler Ballance wrote:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


On Aug 1, 2007, at 1:42 PM, [EMAIL PROTECTED] wrote:


Hi, I wrote a CSharp app using Visual Studio 2005 Express Edition.  I
brought the exe file over to the mac where I have installed the latest
version of Mono.

I get some error messages from mono and was hoping someone could
help me
 work these out


Applications using Windows Forms on Mac OS X will have turbulent
waters to pass through. Unfortunately the GDI+ stuff is still based
off of X11. Feel free to help port Windows Forms to use Quartz as a
backend ;)


Cheers,

- -R. Tyler Ballance

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (Darwin)

iD8DBQFGsP0RA2GmJ0VpG78RAvlzAJsHbAhY6fs78oFWvaFgaZHTzAkm6ACfaait
rvpE0nbiCLcvBXXSfwXKfas=
=qm/z
-END PGP SIGNATURE-
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list





begin:vcard
fn:Brian O'Brien
n:O'Brien;Brian
org:Foothills Hospital / University Of Calgary;Seaman Family MR Research Center
adr:;;1403 29th St. NW;Calgary;AB;T2N 2T9;Canada
email;internet:[EMAIL PROTECTED]
title:PACS System Manager
tel;work:(403) 944-1637
tel;fax:(403) 270-7907
tel;home:(403) 770-0228
tel;cell:(403) 471-9459
x-mozilla-html:TRUE
url:www.imaginginformatics.ca
version:2.1
end:vcard

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


[Mono-dev] Two 2.0 System.Transactions in GAC

2007-08-01 Thread Jonathan Chambers
I was looking over bug 81149 (
http://bugzilla.ximian.com/show_bug.cgi?id=81149), and realized my initial
crash was due to the fact that there seems to be two 2.0 profile assemblies
of System.Transactions in the GAC. On my machines I have a version
2.0.0.0__b03f5f7f11d50a3a and a version 2.0.0.0__b77a5c561934e089 in the
gac. xbuild seems to assume only one version of assembly in gac and dies on
a duplicate key in a dictionary (both 2.0.0.0 it seems). This may still be a
bug in xbuild, but should System.Transactions have both of these version in
the gac?

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


Re: [Mono-dev] Two 2.0 System.Transactions in GAC

2007-08-01 Thread Atsushi Eno
I only have the one with 2.0.0.0__b77a5c561934e089 on Windows, so
I don't think we should have another version. I have no idea about
the other one - probably from an old 2.0 alpha/beta version?

Atsushi Eno

Jonathan Chambers wrote:
 I was looking over bug 81149 
 (http://bugzilla.ximian.com/show_bug.cgi?id=81149), and realized my 
 initial crash was due to the fact that there seems to be two 2.0 profile 
 assemblies of System.Transactions in the GAC. On my machines I have a 
 version 2.0.0.0__b03f5f7f11d50a3a and a version 
 2.0.0.0__b77a5c561934e089 in the gac. xbuild seems to assume only one 
 version of assembly in gac and dies on a duplicate key in a dictionary 
 (both 2.0.0.0 http://2.0.0.0 it seems). This may still be a bug in 
 xbuild, but should System.Transactions have both of these version in the 
 gac?
 
 Thanks,
 Jonathan
 
 
 
 
 ___
 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] [Ximian-mono-list] Call for release notes.

2007-08-01 Thread A Nagappan
Hi Miguel,

System.Data

* 99% of API's are now compatible with MS.NET under
System.Data.SqlClient namespace.
* Implemented SqlBulkCopy in SqlClient. With this the data can be
imported in bulk from client to MS-SQL server.

Thanks
Nagappan
-- 

--
Nagappan A [EMAIL PROTECTED]
Linux Desktop Testing Project - http://ldtp.freedesktop.org
http://nagappanal.blogspot.com

Novell, Inc.
SUSE* Linux Enterprise 10
Your Linux is ready*
http://www.novell.com/linux




 On 8/2/2007 at 5:07 AM, in message
[EMAIL PROTECTED],
Miguel de Icaza [EMAIL PROTECTED] wrote:
 Hello,
 
 The draft release notes for the upcoming Mono 1.2.5 has been
 uploaded here:
 
   http://go-mono.com/archive/1.2.5/ 
 
 Please let me know of any missing functionality or other
important
 things that we should mention on the release notes.
 ___
 Ximian-mono-list mailing list
 [EMAIL PROTECTED] 
 http://lists.ximian.com/mailman/listinfo/ximian-mono-list
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list