update mac project

This commit is contained in:
Luke Pulverenti 2016-11-14 00:50:27 -05:00
parent 04a71e3a31
commit 33db468646
1 changed files with 11 additions and 1 deletions

View File

@ -302,6 +302,16 @@ namespace MediaBrowser.Server.Mac
{
return true;
}
}
}
public class MonoEnvironmentInfo : EnvironmentInfo
{
public bool IsBsd { get; set; }
public virtual string GetUserId()
{
return Syscall.getuid().ToString(CultureInfo.InvariantCulture);
}
}
}