Skip to content

Commit 17bd58b

Browse files
committed
Properly support non-x64 architectures
1 parent d1ee4f4 commit 17bd58b

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

AssimpNet/Unmanaged/UnmanagedLibraryResolver.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,6 @@ private String GetRIDOS()
323323

324324
private String GetRIDArch()
325325
{
326-
#if NETSTANDARD1_3
327326
switch(RuntimeInformation.ProcessArchitecture)
328327
{
329328
case Architecture.Arm:
@@ -336,9 +335,6 @@ private String GetRIDArch()
336335
default:
337336
return "x64";
338337
}
339-
#else
340-
return UnmanagedLibrary.Is64Bit ? "x64" : "x86";
341-
#endif
342338
}
343339
}
344340
}

0 commit comments

Comments
 (0)