Changing shared library name on Unix OS type
This commit is contained in:
parent
ba0e3321bf
commit
dcf55abc9f
|
|
@ -44,6 +44,10 @@ namespace Microsoft.AspNet.Server.Kestrel
|
||||||
architecture,
|
architecture,
|
||||||
"libuv.dll");
|
"libuv.dll");
|
||||||
}
|
}
|
||||||
|
else if ((int)Environment.OSVersion.Platform == 4)
|
||||||
|
{
|
||||||
|
libraryPath = "libuv.so.1";
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
libraryPath = Path.Combine(
|
libraryPath = Path.Combine(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue