diff --git a/src/NTwain/PlatformInfo.cs b/src/NTwain/PlatformInfo.cs index e16073f..7a189f4 100644 --- a/src/NTwain/PlatformInfo.cs +++ b/src/NTwain/PlatformInfo.cs @@ -37,7 +37,9 @@ namespace NTwain { _defaultMemManager = new WinMemoryManager(); - newDsmPath = Path.Combine(Environment.SystemDirectory, Dsm.WIN_NEW_DSM_NAME); + // only the new dsm can be loaded outside of windows folder + newDsmPath = GetFirstFilePathThatExists(Dsm.WIN_NEW_DSM_NAME, Environment.CurrentDirectory, Environment.SystemDirectory) ?? + Path.Combine(Environment.SystemDirectory, Dsm.WIN_NEW_DSM_NAME); #if NET35 oldDsmPath = Path.Combine(Environment.GetEnvironmentVariable("windir"), Dsm.WIN_OLD_DSM_NAME); #else @@ -59,6 +61,11 @@ namespace NTwain } } + static string GetFirstFilePathThatExists(string filename, params string[] folders) + { + return folders.Select(fdr => Path.Combine(fdr, filename)).FirstOrDefault(path => File.Exists(path)); + } + string oldDsmPath; string newDsmPath; @@ -84,7 +91,7 @@ namespace NTwain ExpectedDsmPath = newDsmPath; IsSupported = DsmExists = File.Exists(ExpectedDsmPath); UseNewWinDSM = true; - Log.Debug("Using new dsm in windows."); + Log.Debug("Using new dsm."); } else { @@ -92,7 +99,7 @@ namespace NTwain { ExpectedDsmPath = newDsmPath; UseNewWinDSM = IsSupported = DsmExists = true; - Log.Debug("Using new dsm in windows."); + Log.Debug("Using new dsm."); } else { diff --git a/src/NTwain/Properties/VersionInfo.cs b/src/NTwain/Properties/VersionInfo.cs index 961d59c..7716d32 100644 --- a/src/NTwain/Properties/VersionInfo.cs +++ b/src/NTwain/Properties/VersionInfo.cs @@ -23,7 +23,7 @@ namespace NTwain /// /// The build release version number. /// - public const string Build = "3.3.9.2"; // change this for each nuget release + public const string Build = "3.3.9.3"; // change this for each nuget release }