Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Curt Hagenlocher
Ah right, I had forgotten entirely about the POSIX subsystem (gee, I can't imagine why). The NT kernel fully supports case-sensitive file names, but the Win32 subsystem mucks it up. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Letterle Sent: Saturday, August 16, 2008 5

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Michael Letterle
It's not that simple in the Windows world. NTFS is actually case sensitive, but the OS and tooling doesn't really support it well: http://support.microsoft.com/kb/100625 On Sat, Aug 16, 2008 at 8:23 PM, Curt Hagenlocher <[EMAIL PROTECTED]>wrote: > >From Charles Oliver Nutter at Saturday, August

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Curt Hagenlocher
>From Charles Oliver Nutter at Saturday, August 16, 2008 1:57 PM: > > Michael Letterle wrote: >> Or update the csproj so that the file names are cased correctly for *nix >> (note that the casing isn't a MONO thing, it's a OS thing), Windows will >> continue to not care. > > To be honest, I call bug

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Charles Oliver Nutter
Michael Letterle wrote: Or update the csproj so that the file names are cased correctly for *nix (note that the casing isn't a MONO thing, it's a OS thing), Windows will continue to not care. To be honest, I call bug on whatever tool creates and maintains the csproj files. - Charlie ___

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Ben Hall
That's the way I hoped it would work after clicking send ;) On Sat, Aug 16, 2008 at 8:47 PM, Michael Letterle <[EMAIL PROTECTED]> wrote: > You could yes, my assumption would be that pregenerated csproj + sln files > would be there already though for people that don't have a ruby installation > alr

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Michael Letterle
You could yes, my assumption would be that pregenerated csproj + sln files would be there already though for people that don't have a ruby installation already. On Sat, Aug 16, 2008 at 3:39 PM, Ben Hall <[EMAIL PROTECTED]> wrote: > Just so I understand, if I wanted to load the files in Visual Stu

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Ben Hall
Just so I understand, if I wanted to load the files in Visual Studio, I would run a rake file which would generate me the csproj + sln and launch VS? On Sat, Aug 16, 2008 at 7:38 PM, Michael Letterle <[EMAIL PROTECTED]> wrote: > I was up till 4am last night at eRubyCon, and this is just me thinkin

Re: [Ironruby-core] Interacting with a WPF/Winforms application

2008-08-16 Thread Michael Letterle
FWIW, the easiest way is to rename the exe to dll,(btw, is there a reason we can't require exes?) and then call "Thread.new { Program.main args }" :) On Fri, Aug 15, 2008 at 3:01 AM, Ivan Porto Carrero <[EMAIL PROTECTED]>wrote: > Hi > > Is there a simple way to interact with the GUI of a WPF/Winf

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Jim Deville
I'd be interested in seeing it. It could be really useful. -Original Message- From: Michael Letterle <[EMAIL PROTECTED]> Sent: August 16, 2008 11:44 AM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] r132 - can you check if it builds correctly on mono? I was up till 4

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Michael Letterle
I was up till 4am last night at eRubyCon, and this is just me thinking outloud I've had it in my mind to write a msbuild plugin for Rake, instead of maintaining the csproj files directly, how about maintaining them in rake files that can generate csproj files on demand? That way we're not beh

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Jim Deville
I was just trying to think of something that wouldn't get messed up again. -Original Message- From: Michael Letterle <[EMAIL PROTECTED]> Sent: August 16, 2008 7:05 AM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

Re: [Ironruby-core] r132 - can you check if it builds correctly on mono?

2008-08-16 Thread Michael Letterle
Or update the csproj so that the file names are cased correctly for *nix (note that the casing isn't a MONO thing, it's a OS thing), Windows will continue to not care. On Fri, Aug 15, 2008 at 10:32 PM, Jim Deville <[EMAIL PROTECTED]>wrote: > Or we could do parsing on C# and recurse on Mono. > > -