# How to use Nuget Package DLL in Fuse

**URL:** https://forums.fusetools.com/t/how-to-use-nuget-package-dll-in-fuse/8513
**Category:** How-to Discussions
**Created:** [December 1, 2024, 8:21pm UTC](https://forums.fusetools.com/t/how-to-use-nuget-package-dll-in-fuse/8513 "2024-12-01T20:21:26Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![lakexyde](https://avatars.discourse-cdn.com/v4/letter/l/f05b48/32.png) [@lakexyde](https://forums.fusetools.com/u/lakexyde)
#### Post date: [December 1, 2024, 8:21pm UTC](https://forums.fusetools.com/t/how-to-use-nuget-package-dll-in-fuse/8513/1 "2024-12-01T20:21:27Z")

</div>

I would like to create a JS Module for LiteDB. It is written in pure C# with .NET Standard 1.3, 2.0 support. I have downloaded the DLL and from what I could understand, I do not need to download anything else for the Android and iOS platforms. I have checked the documentation and could not find how to go about it.

> **[LiteDB 5.0.21](https://www.nuget.org/packages/LiteDB)**
>
> LiteDB - A lightweight embedded .NET NoSQL document store in a single datafile
> Signed by signpath.io from repository 'https://github.com/mbdavid/LiteDB' commit '391cc9318c5be6e56cb71b3ce14b1ed9cb324763' (see contained AppVeyorSettings.json file for...

i have tried the following but it could not find “LiteDB”

```auto
<Extensions Backend="CPlusPlus">
    <Require Assembly="LiteDB.dll" />
</Extensions>

```
