Install NETStandard 2.0 dll via Nuget

Hello,

I am evaluating your Aspose.PDF, my project is net6.0. How can install it automatically using NETStandard 2.0 dll via Nuget. I tried using “PM>Install Package Aspose PDF”, but it defaults to use the net6.0 folder dlls. Thanks.

@cd123

You can download DLLs from our downloads section in case you want to use specific DLL. However, why would you need to use .NET Standard 2.0 DLL in a .NET 6 project?

Thanks for your feedback.
I want to have a test, but I don’t want to download and manually add it. through the Install-Package command, is it impossible to specify the NETStandard 2.0 folder to install?

@cd123

NuGet tries to use the most compatible and highest version framework that matches your project. If the package supports .NET 6.0, it will prefer that over .NET Standard 2.0. Forcing a lower framework version might introduce compatibility issues. Can you please specify why you are preferring to use .NET Standard 2.0 DLLs over .NET 6.0?