Are there plans to support ASP.NET Core MVC?
Hi Hendrix,
Hi Hendrix,
Yes, I was referring to .Net Core. Thank you for the update.
Hi Hendrix,
Hi,
As last reply has been sometime ago and .NET Core is now in version 2.0, can I check again if GroupDocs products support .NET Core currently?
Thanks for coming back. We are afraid that still some certain features, that are required by our products, are not supported in .NET Core. Therefore, at the moment, GroupDocs products do not support this framework. However, .NET Core support is one of our priorities for the next couple of years. In case we get any useful information in this regard, we’ll surely share that with you.
Are you supporting .NET CORE 2.0 now?
Thanks for contacting support.
I am afraid that we are not supporting .NET Core at the moment. However, we have the plans for its support in the future. Please stay tuned to our blog for the updates.
Hi
It’s been a year now, is there any update of the support for .Net Core?
Thanks
We are planning to support .NET Core by the end of 2019, however, we can’t promise you the ETA.
Any updates on this? .NET Core 3.0 has been released.
Our development activities to support .NET Core are in progress (logged as VIEWERNET-1904). We shall notify you here as well as announce it on our blog once the support is available. We appreciate your patience in this regard.
The support of .NET Standard 2.0 (filed as VIEWERNET-1904) has been added in this update. This message was posted using Bugs notification tool by usman.aziz
Hi ,
By following the demo application in this link, we made a sample viewer application with .net core mvc. Do you have a javascript, css interface file for this application?
Thank you.
Today, we have published GroupDocs.Viewer.UI package that simplifies integration GroupDocs.Viewer into .NET Core web-applications.
Integration steps:
- Install packages
dotnet add package GroupDocs.Viewer.UI
dotnet add package GroupDocs.Viewer.UI.SelfHost.Api
dotnet add package GroupDocs.Viewer.UI.Api.Local.Storage
dotnet add package GroupDocs.Viewer.UI.Api.Local.Cache
- Add configuration code to your
Startup
:
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services
.AddGroupDocsViewerUI();
services
.AddControllers()
.AddGroupDocsViewerSelfHostApi(config =>
{
config.SetLicensePath("c:\\licenses\\GroupDocs.Viewer.lic");
})
.AddLocalStorage("./Files")
.AddLocalCache("./Cache");
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app
.UseRouting()
.UseEndpoints(endpoints =>
{
endpoints.MapGroupDocsViewerUI(options =>
{
options.UIPath = "/viewer";
options.APIEndpoint = "/viewer-api";
});
endpoints.MapGroupDocsViewerApi(options =>
{
options.ApiPath = "/viewer-api";
});
});
}
}
- Run the app and navigate to
/viewer
in your browser.
Please check this sample_app.zip (152.4 KB) and GitHub - groupdocs-viewer/GroupDocs.Viewer-for-.NET-UI: UI - User Interface for GroupDocs.Viewer for .NET document viewer and automation API. repository for more details.
Hi,
I cannot download the sample_app.zip file because I am not authorized. Can you check?
You have presented 2 different solutions, which way should I go?
the first is to use the GroupDocs.Viewer.UI package
The second is the following way.
Please check net_core_app.zip (1.3 MB) that is a rough copy of GroupDocs.Viewer-for-.NET-MVC app. It uses the latest version of GroupDocs.Viewer for .NET 21.6 but you can try using 19.10 with it. I’m using 21.6 as there are many issues fixed since 19.10 so the latest version is performing better.