Hello all,
I am using Groupdocs.viewer 19.6.
I have a function which look like below
public static ViewerConfig GetConfigurations()
{
//ExStart:Configurations
ViewerConfig config = new ViewerConfig();
//set the storage path
config.StoragePath = StoragePath;
//Uncomment the below line for cache purpose
config.EnableCaching = true;
config.CacheFolderName = "cachefolder";
return config;
//ExEnd:Configurations
}
now I upgraded the groupdocs.viewer from 19.6 to 20.8 and I am getting theb error
ViewerConfig could not be found
I had go through the release notes but not able to understand what should be done here.