Officially, no. For VS 2019+, use the Crystal Reports for Visual Studio extension (which includes its own runtime). However, the .NET 4.0 runtime can still run reports from apps compiled in VS 2019 if they target .NET 4.0.
<Chain> <MsiPackage SourceFile="CRRuntime_13_0_22_64bit.msi" /> <MsiPackage SourceFile="MyApp.msi" /> </Chain> Start-Process msiexec.exe -Wait -ArgumentList '/i "C:\Deploy\CRRuntime.msi" /quiet /norestart' Part 10: Updates and Service Packs SAP regularly releases Service Packs (SP) for the Crystal Reports runtime. The last version fully compatible with .NET 4.0 is SP 25 (13.0.25). Later SPs drop .NET 4.0 support. Officially, no
using CrystalDecisions.CrystalReports.Engine; class Test static void Main() ReportDocument doc = new ReportDocument(); System.Console.WriteLine("Runtime installed successfully"); no. For VS 2019+