Add NuGet packages

Some UNIQO library widgets/scripts require NuGet packages to be installed. For more information about NuGet visit Microsoft documentation.

Note

See libraries compatibility limitations in Use third party .NET libraries.

Installing NuGet packages in Visual Studio

  1. Open Visual Studio via Q Studio.

  2. Install the necessary NuGet packages (for the installation procedure follow the Microsoft Guide).

  3. Click on the project to open the .csproj file.

  4. Add <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> after the <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> property in the .csproj file”.

  5. Compile the project.

Installing NuGet packages in Visual Studio Code

  1. Install the extension NuGet Gallery.

  2. Open the Command Palette (Ctrl+Shift+P, F1).

  3. Type “nuget” and select “NuGet: Open NuGet Gallery”.

  4. Install the necessary NuGet packages.

  5. Open the .csproj file of the project.

  6. Add <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> after the <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> property in the .csproj file”.

  7. Compile the project.