Hi Karthick.
+10 for solution.
Your assemblies target only pure .net core solutions.
You should build (target) assemblies not only for .net core but at least for .net 451 too.
This is not practical if you use it (for example) as Windows service.
Example:
Just create simple ASP.NET Core WebApi Controller and use WordDocument class in it.
For example create mailmerge and return result to client.
We just need to reference Syncfusion .DocIO.MVC from nuget and include Syncfusion.DocID.DLS.
After build everything is perfect.
We can run application and mailmerge is working.
But what if we want to use that apllication as Windows service ?
From ASP.NET Core point of view it's simple.
We can use Microsoft.AspNetCore.Hosting.WindowsServices
target framework to net451 (because windows services works only on windows) and build project.
If we don't use Syncfusion restore & build will succeed, with Syncfusion Will not.
Because you are not targeting .NET 4.5.1.
So please let us know if this is possible and when targeting .NET framework Will be supported.
Thanks for advance.
Edvin