Skip to content

Commit

Permalink
Fix For Unix NewtonSoft Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Solxanich committed May 1, 2024
1 parent 2f47ff2 commit 6673f75
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -20,6 +20,11 @@ if [ -d "$steamworksRename" ]; then
mv -v "$steamworksRename" "$root_dir/Libraries/steamworks.net" 2>&1 | tee -a "$LogFile"
fi

newtonsoftRename="$root_dir/Libraries/Newtonsoft.Json"
if [ -d "$newtonsoftRename" ]; then
mv -v "$newtonsoftRename" "$root_dir/Libraries/newtonsoft.json" 2>&1 | tee -a "$LogFile"
fi

# The following is a workaround for the system's SDL2 library being preferred by the linkers for some reason.
# Additionally, something in dotnet is requesting 'libSDL2.so' (instead of 'libSDL2-2.0.so.0' that is specified in dependencies)
# without actually invoking managed NativeLibrary resolving events!
Expand Down

0 comments on commit 6673f75

Please sign in to comment.