Catalog Example
The PSPDFKit .NET Library comes with an example application called the Catalog app, which contains many useful examples for exploring the different features of PSPDFKit and getting started quickly. You can find the app in the Example
folder of the SDK zip file. The SDK zip file can be downloaded from the customer portal or by requesting an evaluation license of PSPDFKit.
Windows
Requirements
- Windows 10
- Visual Studio 2019
- .NET Core 3.1
Running the Catalog App
To build the Catalog app:
- Extract
PSPDFKit.NET-{version}.zip
to your desired location. - From the extracted files, open the
Example/Catalog.sln
solution in Visual Studio (or an equivalent IDE supporting the .NET Framework). - Replace the
YOUR_LICENSE_KEY_GOES_HERE
string inapp.config
with the trial or development activation key you have been issued. - Choose the solution platform
x86
orx64
. - Build and run the project.
Linux
Requirements
- Ubuntu 18.04 (other flavors will work, see the compatibility page)
- .NET Core 3.1
Running the Catalog App
To build the Catalog app:
- Extract
PSPDFKit.NET-{version}.zip
to your desired location andcd
intoExample/catalog
. - Replace the
YOUR_LICENSE_KEY_GOES_HERE
string inCatalog/app.config
with the trial or development activation key you have been issued. - Run the Catalog example (
dotnet run --project Catalog
).
Mac
Requirements
- macOS 10.15.* Catalina.
- .NET Core 3.1 (
brew cask install dotnet-sdk
)
Running the Catalog App
To build the Catalog app:
- Extract
PSPDFKit.NET-{version}.zip
to your desired location andcd
intoExample/catalog
. - Replace the
YOUR_LICENSE_KEY_GOES_HERE
string inCatalog/app.config
with the trial or development activation key you have been issued. - Run the Catalog example (
dotnet run --project Catalog
).