How to Apply Bold Reports Custom NuGet Packages
You are having two options to apply the patched NuGet packages in development environment. You can find the details as follows.
Apply Custom NuGet packages using the Visual Studio
You have to use the Visual Studio package manager to restore the custom package from the location of having the Custom NuGet packages. You can find the details as follows.
First, close your project in Visual Studio.
Delete the bin and obj folders from the project location.
Open the following location with help of Run.
%USERPROFILE%\.nuget\packages\
. Remove theboldreports.net.core
folder.Download the provided NuGet packages.
Unblock the downloaded zip file and Unzip the downloaded file
Open the Visual Studio NuGet package manager.
Select the Settings icon in the Package Manager UI outlined as follows
Add a source, select +, edit the name, enter the custom package path in the Source control, and select Update. The source now appears in the selector drop-down.
Now, choose the newly added source in package source drop-down and select it.
Install the Custom NuGet Packages.
Replaced the assemblies manually
You have to use the Visual Studio package manager to restore the custom package from the location of having the Custom NuGet packages.
First, close your project in Visual Studio.
Delete the bin and obj folders from the project location.
Download the provided NuGet packages.
Unblock the downloaded zip file and Unzip the downloaded file.
Extract NuGet package using the 7-Zip extractor.
If you do not have the 7-zip, then change the
nupkg
file name asZip
and extract using the zip extractor.Copy all folders from the lib or specific framework that you are using.
Open the following location with help of Run.
%USERPROFILE%\.nuget\packages\boldreports.net.core\{{site.releaseversion}}\lib
. Pasted the copied files.Now, you can open and compile the project, this will use the provided patch assembly from the NuGet cache restored in your system.