9

I'm building a .net-microframework app that uses Zeroconf. The existing zeroconf solutions all seem to either rely on dns-sd.dll or some other interop function of .net which is not supported in .netmf.

Is there a pure C# version of zeroconf (or dns-sd) out there that you know of?

MandoMando
  • 5,215
  • 4
  • 28
  • 35

1 Answers1

6

Bringing Closure to this tumbleweed:

ZeroConf on codeplex is a very comprehensive project. Though I'm not sure if it's fully tested.

(personally I was hoping for a smaller and simpler implementation ;)

MandoMando
  • 5,215
  • 4
  • 28
  • 35
  • 7
    Be careful with that zeroconf from codeplex. Its under the MS-RL not the MS-PL. That is a viral license that says your source has to also be open. – jrwren Mar 27 '11 at 16:00
  • 2
    This is pretty old, but I asked about the license on that project and it was a mistake that it was MS-RL. The license has since been changed to MS-PL. http://zeroconf.codeplex.com/license – Alex Apr 13 '14 at 18:39