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?
Mono.Unix.Nativeis a namespace. The assembly where it’s located is namedMono.Posix.dll.I think it’s shipped with Mono for Windows – even if it’s unlikely to be used there.