Re: Why can meson find hunt-net but not hunt-proton in dependency resolution?

2020-04-01 Thread Heromyth via Digitalmars-d-learn
On Wednesday, 1 April 2020 at 02:27:38 UTC, YD wrote: Thanks for the reply! BTW is hunt-amqp for AMQP 1.0 only? Because when I try it on an AMQP 0.9 server, it does not seem to connect. Thanks again! We are using RabbitMQ v3.8.2 for test. The hunt-amqp is based on AMQP 1.0, and is not tested

Re: Why can meson find hunt-net but not hunt-proton in dependency resolution?

2020-03-31 Thread YD via Digitalmars-d-learn
On Wednesday, 1 April 2020 at 01:56:26 UTC, Heromyth wrote: On Wednesday, 1 April 2020 at 01:21:22 UTC, YD wrote: [...] Sorry for the inconveniences. We are still testing Hunt-AMQP. The problems about dub.json will be fixed soon. Thanks for the reply! BTW is hunt-amqp for AMQP 1.0 only?

Re: Why can meson find hunt-net but not hunt-proton in dependency resolution?

2020-03-31 Thread Heromyth via Digitalmars-d-learn
On Wednesday, 1 April 2020 at 01:21:22 UTC, YD wrote: On Tuesday, 31 March 2020 at 19:59:25 UTC, YD wrote: [...] So I found that the issue is that dub.json file in hunt-proton has an entry referring to the parent package with a relative file path in it. When that relative file path is

Re: Why can meson find hunt-net but not hunt-proton in dependency resolution?

2020-03-31 Thread YD via Digitalmars-d-learn
On Tuesday, 31 March 2020 at 19:59:25 UTC, YD wrote: On Tuesday, 31 March 2020 at 19:51:31 UTC, YD wrote: Hi, I am trying to use Meson, and I did the followings to get dub packages: dub fetch hunt-net dub fetch hunt-proton dub build hunt-net dub build hunt-proton when I have

Re: Why can meson find hunt-net but not hunt-proton in dependency resolution?

2020-03-31 Thread YD via Digitalmars-d-learn
On Tuesday, 31 March 2020 at 19:51:31 UTC, YD wrote: Hi, I am trying to use Meson, and I did the followings to get dub packages: dub fetch hunt-net dub fetch hunt-proton dub build hunt-net dub build hunt-proton when I have this line in my meson.build file: dependency('hunt-net

Why can meson find hunt-net but not hunt-proton in dependency resolution?

2020-03-31 Thread YD via Digitalmars-d-learn
Hi, I am trying to use Meson, and I did the followings to get dub packages: dub fetch hunt-net dub fetch hunt-proton dub build hunt-net dub build hunt-proton when I have this line in my meson.build file: dependency('hunt-net', method: 'dub') It works fine: Run-time

Re: D + .NET

2015-03-12 Thread Kagamin via Digitalmars-d-learn
Only native libraries are more or less accessible from D, not .net. For .net you can use pinvoke (if you can build D dll) or IPC.

Re: D + .NET

2015-03-12 Thread Jacob Carlborg via Digitalmars-d-learn
On 2015-03-11 14:30, Sativa wrote: Can you point out where it says anything about wpf or .NET? I'm having trouble finding it. I even searched for .net and wpf but still no luck ;/ Maybe you posted the wrong link by accident? You did mention win32 ;) For OS X Cocoa is the GUI framework

Re: D + .NET

2015-03-12 Thread Kagamin via Digitalmars-d-learn
You can also try to expose COM-accessible .net interface and use it through COM in D.

Re: D + .NET

2015-03-12 Thread Kagamin via Digitalmars-d-learn
On Wednesday, 11 March 2015 at 13:30:27 UTC, Sativa wrote: On Wednesday, 11 March 2015 at 08:45:15 UTC, Kagamin wrote: http://wiki.dlang.org/Libraries_and_Frameworks#GUI_Libraries Can you point out where it says anything about wpf or .NET? I'm having trouble finding it. I even searched

D + .NET

2015-03-11 Thread Sativa via Digitalmars-d-learn
If I write a business model in D, how hard is it to hook up a presentation using something like wpf, win32, or even whatever mac does?

Re: D + .NET

2015-03-11 Thread Kagamin via Digitalmars-d-learn
http://wiki.dlang.org/Libraries_and_Frameworks#GUI_Libraries

Re: D + .NET

2015-03-11 Thread Sativa via Digitalmars-d-learn
On Wednesday, 11 March 2015 at 08:45:15 UTC, Kagamin wrote: http://wiki.dlang.org/Libraries_and_Frameworks#GUI_Libraries Can you point out where it says anything about wpf or .NET? I'm having trouble finding it. I even searched for .net and wpf but still no luck ;/ Maybe you posted the wrong

.Net

2011-11-09 Thread Reklen
Is there a project to export D in .Net world? I see this http://dnet.codeplex.com/ but it seems dead. I don't think D could be a rival to C# but i'm sure it may be interesting if it works in such enviroment.

Re: .Net

2011-11-09 Thread Trass3r
Am 09.11.2011, 13:39 Uhr, schrieb Reklen rek...@mymaill.com: Is there a project to export D in .Net world? I see this http://dnet.codeplex.com/ but it seems dead. Feel free to continue that project ;) Apart from that you are left with C interface dlls.

Re: .Net

2011-11-09 Thread Kagamin
Reklen Wrote: Is there a project to export D in .Net world? I see this http://dnet.codeplex.com/ but it seems dead. I don't think D could be a rival to C# but i'm sure it may be interesting if it works in such enviroment. AFAIK the author tried to preserve D string semantics which

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

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/visual studio

Re: D compiler for .NET

2009-06-10 Thread Kagamin
the compiler into the .NET framework/visual studio? I think, the same way, as you would integrate any other .net language. See wikipedia for a list of them. 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

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 do you

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.

D compiler for .NET

2009-06-09 Thread Jason House
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 to existing

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 add