pschelpdesk/Vendor/Prise/Core/NativeDependencyLoadPreference.cs
2024-11-04 20:45:34 +01:00

16 lines
536 B
C#

namespace Prise
{
/// <summary>
/// Sets the preferred Native Library loading strategy
/// </summary>
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
}
}