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
Open Visual Studio via Q Studio.
Install the necessary NuGet packages (for the installation procedure follow the Microsoft Guide).
Click on the project to open the
.csproj
file.Add
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
after the<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
property in the.csproj
file”.Compile the project.
Installing NuGet packages in Visual Studio Code
Install the extension NuGet Gallery.
Open the Command Palette (Ctrl+Shift+P, F1).
Type “nuget” and select “NuGet: Open NuGet Gallery”.
Install the necessary NuGet packages.
Open the
.csproj
file of the project.Add
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
after the<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
property in the.csproj
file”.Compile the project.