I was given a license file to upgrade our current system which uses
Aspose.Total for .NET
The subscription expiry is as follows
20230402
My question is as follows:
- What is the latest stable version of aspose I could use? For Aspose Words and Aspose PDF
- When I try to upgrade to 22.10, It gave me an error
- Are there any other steps I need to follow?
Note: The steps I followed are as follows:
- I copied the license file in the top level folder of the project (previous file was also here)
- I modified both aspose words and pdf conversion code and added the static block
static WordConversion()
{
if (AsposeLicense == null)
{
AsposeLicense = new License();
AsposeLicense.SetLicense("Aspose.Total.NET.lic");
}
}
- Updated the package reference with the latest aspose version 22.10
<ItemGroup>
<PackageReference Include="Aspose.Words" Version="22.10.0" />
<PackageReference Include="Aspose.PDF" Version="22.10.0" />