This topic provides information about the following:
What are NuGet Packages?
NuGet is the package manager for the Microsoft development platform that includes .NET. NuGet packages make it easy to add, remove, and update libraries and tools in Visual Studio projects that use the .NET Framework.
To read more about NuGet, please visit nuget.org.
Installing NuGet
The NuGet package manager is installed with Visual Studio, since version 2012.
Windows NuGet command line instruction for installation can be found at https://docs.microsoft.com/en-us/nuget/install-nuget-client-tools
FormFix and FormDirector NuGet Packages
Package dependencies are automatically handled.
FormFix and FormDirector .Net NuGet packages are self-sufficient and provide all the necessary functionality for the package they describe. However, if you want to extend the package capabilities with functionality from other packages, you need to install those corresponding packages, too.
Package Id |
Description |
Assemblies |
Package Dependencies |
Accusoft.FormFix.Net |
The FormFix® component contains all the necessary objects, methods, and properties it takes for you to speed the application development process of structured forms processing systems. |
Accusoft.FormFix.Net.dll tensorflow.dll |
.NETFramework, Version=3.5 |
Accusoft.FormDirector.Net |
The FormDirector™ component contains all the necessary objects, methods, and properties it takes for you to integrate various Accusoft components into a robust forms-processing product. |
Accusoft.FormDirector.Net.dll |
.NETFramework, Version=3.5 |
Adding FormFix and/or FormDirector NuGet Packages
Once installed, FormFix will have evaluation mode activated by default. To continue developing or deploying with FormFix, you will need a paid license. Refer to Licensing and Distributing for more information.
FormDirector is fully licensed and it is not necessary to purchase a license.
All of our packages can be found at nuget.org, which is the central package repository used by all package authors and consumers. The NuGet Package Manager is configured, by default, to use nuget.org for packages' sources.
From Visual Studio
- Open the NuGet Package Manager in Visual Studio by right-clicking on the project or solution in the Solution Explorer, and choose Manage NuGet packages.
- In the opened window make sure that Package source is set to nuget.org.
- Select Browse at the top-left of the page, and type Accusoft.FormFix.Net or Accusoft.FormDirector.Net into the search bar to find the package.
- Select the package on the left and then click the Install button on the right.
After installing the required package, you should see the newly added Accusoft.FormFix.Net or Accusoft.FormDirector.Net assemblies (and their dependencies) in your application's References folder.
- Add the FormFix (or FormDirector) namespace to any C# or VB.NET source file where you want to reference its classes:
using Accusoft.FormFixSdk;
using Accusoft.FormDirectorSdk;
Native binaries and additional resources are copied to your app's output directory after building your project.
To learn more, we also recommend following the official tutorials available at nuget.org: https://docs.nuget.org/consume/package-manager-dialog
Uninstalling the Accusoft.FormFix.Net package does not delete resource files copied from building your application.