Re: D compiler for .NET

2009-06-11 Thread Tim Matthews
Jason House wrote: Earlier today, I tried to use the D compiler for .NET from http://dnet.codeplex.com/ Beyond compilation of the compiler, I found zero instructions on what to do next. How do I integrate the compiler into the .NET framework/visual studio? I'd like to be able to add D files

Re: D compiler for .NET

2009-06-10 Thread Bill Baxter
On Wed, Jun 10, 2009 at 2:12 PM, Jason House wrote: > Daniel Keep Wrote: > >> "The back-end code is not of production quality, it is intended for >> research and educational purposes. The D Programming Language is a >> fairly complex language, and non-trivial features such as TLS and >> closures ma

Re: D compiler for .NET

2009-06-10 Thread Jason House
Daniel Keep Wrote: > "The back-end code is not of production quality, it is intended for > research and educational purposes. The D Programming Language is a > fairly complex language, and non-trivial features such as TLS and > closures make it an interesting case study for generating IL code."

Re: D compiler for .NET

2009-06-10 Thread Kagamin
Jason House Wrote: >What I'm really hoping to get out of this is proper generic programming and >enhanced compile-time validation. > I think these are done by frontend and frontend was kept intact. He didn't even wanted to add .net-specific pragmas to the frontend.

Re: D compiler for .NET

2009-06-10 Thread Jason House
Kagamin Wrote: > Jason House Wrote: > > I'd like to be able to add D files to existing solutions (with C# > > code). > I don't think this feature is available, the author was focused on making CUI > compiler only. If VS allows integration of 3rd party compilers, you can use > that. > BTW how d

Re: D compiler for .NET

2009-06-10 Thread Kagamin
Jason House Wrote: > Beyond compilation of the compiler, I found zero instructions on what to do > next. I believe it's a traditional CUI compiler. Compile the compiler, open command prompt and run the compiler with source files. I think, it will say if something is wrong. > How do I integrate

Re: D compiler for .NET

2009-06-10 Thread Jason House
Daniel Keep Wrote: > > > Jason House wrote: > > Earlier today, I tried to use the D compiler for .NET from > > http://dnet.codeplex.com/ > > > > Beyond compilation of the compiler, I found zero instructions on what to do > > next. How do I integrate the compiler into the .NET framework/visua

Re: D compiler for .NET

2009-06-09 Thread Daniel Keep
Jason House wrote: > Earlier today, I tried to use the D compiler for .NET from > http://dnet.codeplex.com/ > > Beyond compilation of the compiler, I found zero instructions on what to do > next. How do I integrate the compiler into the .NET framework/visual > studio? I'd like to be able to