We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3579b3a commit b5547d0Copy full SHA for b5547d0
PowerSync/PowerSync.Common/Utils/PowerSyncPathResolver.cs
@@ -8,7 +8,7 @@ public static string GetNativeLibraryPath(string packagePath)
8
{
9
string fileName = GetFileNameForPlatform();
10
11
- // Check the flattened path first since some technologies (eg. .NET 4.8 Framework) flatten libraries into the root folder.
+ // Check the flattened path first since some technologies (eg. .NET Framework 4.8) flatten libraries into the root folder.
12
// Checking this path first also makes debugging easier, since one can easily change the resolved DLL.
13
string flattenedPath = Path.Combine(packagePath, fileName);
14
if (File.Exists(flattenedPath)) return flattenedPath;
0 commit comments