Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is mono.unix.native

I have inherited a C# web app (and web services) which is being compiled on Windows and run on Mono on a Linux box. I need to do some file permissions magic, which looks like it involves including the assembly: mono.unix.native.

So, can I reference this on my windows box, and, if so, where is it?

like image 497
Simon Parker Avatar asked Dec 06 '11 23:12

Simon Parker


1 Answers

Mono.Unix.Native is a namespace. The assembly where it's located is named Mono.Posix.dll.

I think it's shipped with Mono for Windows - even if it's unlikely to be used there.

like image 171
poupou Avatar answered Sep 28 '22 22:09

poupou