namespace Prise { /// /// Sets the preferred Native Library loading strategy /// public enum NativeDependencyLoadPreference { // Native libraries will be loaded from the runtime folder on the host // Windows: C:\Program Files\dotnet\shared\.. // Linux: /usr/share/dotnet/shared/.. // OSX: /usr/local/share/dotnet/shared PreferInstalledRuntime = 0, // Native libraries will be loaded from the remote context PreferDependencyContext } }