Loading/finding nuget package dll files alongside a server script

I am attempting to create a fiveM server, and for that I am trying to use mongoDB as my database. Now I’ve downloaded the official mongoDB.driver and others. Now when I try to load my server script, it is outputted that it was unable to find the mongoDB.driver dll file

I’ve tried: Putting the files into the server folder with the .exe - But no luck

My __resource.lua file:

resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'

files {
	'server/files/*.dll',
	'server/files/*.xml',
	'server/files/MongoDB.Driver.dll',
	'server/files/MongoDB.Driver.xml'
}

client_scripts {
	'client/Economy.client.net.dll'
}

server_scripts {
	'server/Economy.net.dll'
}

The error:

The server will use the resource root directory as well as the server_script .dll directory as the search path. You placed them in neither.

That did it, once again thank you mr. Bubble :smiley: