-
-
Notifications
You must be signed in to change notification settings - Fork 234
Open
Labels
Description
Hello! I had a quick question of the System.Linq.Dynamic.Core.DynamicExpressionParser
Class specifically for Android platforms. When calling the
DynamicExpressionParser.ParseLambda()
function it throws a System.IOException
on Android devices. I skimmed through the source code and found out that it calls DefaultAssemblyHelper.GetAssemblies()
which uses Directory.GetFiles(AppDomain.CurrentDomain.BaseDirectory, "*.dll")
However, AppDomain.CurrentDomain.BaseDirectory is just a "/" on Android devices which causes the exception.
Is there any workaround for this? Thank you for your time!