Reference VL.Audio.dll when creating a Package

Hi,
i need to reference VL.Audio.dll in my package, and i would like to know how is the right way to procede.
Do i need to add it to the package folder?
Do i reference the existing one in the vvvv version i use to create the package?

Thanks

iirc you just reference the one that ships with vl.

3 Likes

Depending on what exactly you are using “just” referencing th VL.Audio nuget and then setting the IsFriend attribute for that reference using a text editor could also work. You can check VL.Audio.LTC.

1 Like

i meant just add file dependency (ALT + CTRL + E) like so:
image
that way, you have access to all methods in the dll

1 Like

I’m doing in this way, removing the absolute path from the document
<PlatformDependency Id="..." Location="VL.Audio.dll" />

1 Like