We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

.NET Core 2.0 released today. When will Syncfusion support .NET Core 2.0?

Thanks for all your efforts.

1 Reply

SP Sureshkumar P Syncfusion Team August 15, 2017 04:12 PM UTC

Hi X, 
Thank you for contacting Syncfusion Support,   
Yes, our latest (15.2.0.46) version of ASP.NET Core Nuget packages do support in ASP.NET Core version 2.0.  Please, check out the link to know more about EJ components in ASP.NET Core platform.  
We have detailed guide information to render EJ controls in our help document.  
Steps to render EJ controls in ASP.NET Core 2.0 
1.     Open visual studio to create a ASP.NET Core application. 
2.     After project creation, install the Syncfusion Packages in your created application. 
3.     Select the Tools-> NuGet Package Manager-> Package Manager Settings the dialog window will open. 
4.     Navigate to the NuGet Package Manager->Package Sources from the Options dialog. 
5.     Click the Add button to create the new Package Source. 
6.     Select the newly created Package Source and rename the source name using the Name input box. 
 
 
Local machine packages should not be checked in the list of available package resource. Only nuget packages link and Syncfusion packages should be checked 
Name: Name of the package that listed in Available package sources 
Source: Syncfusion ASP.NET Core NuGet Package feed URL
http://nuget.syncfusion.com/nuget_aspnetcore/nuget/getsyncfusionpackages/aspnetcore 
7.      Select the Update and then click the OK button. The package’s source get added to the list of available package sources. 
8.      Right click your project references and then select “Manage NuGet Package” option. In this window choose the “Syncfusion Packages registered name” from the package source dropdown.  
9.      Now, our Syncfusion Packages will list in this window. Select and install the “Syncfusion.EJ.AspNet.Core” package from this list. 
 
After, the nuget packages were successfully installed, then output window will show like below. 
 
10.   Then the packages will get installed and it will be automatically referred to your application. Open your bower.json file and specify our bower name “syncfusion-javascript” and the value with *. The * specifies the latest version of our scripts and themes files.  
 
11.   Now open _viewImports.cshtml file from the views folder and add the following namespace for components references and Tag Helper support. 
 
@using Syncfusion.JavaScript 
@addTagHelper "*, Syncfusion.EJ" 
  1. Refer the necessary scripts and CSS files in your layout.cshtml page from lib -> syncfusion-javascript folder.
 
Include the below mentioned scripts and CSS references under the appropriate environment. (For eg: If your environment is “Development”, then refer the scripts and CSS files under the tag environment names=”Development”). Refer all the required external and internal scripts only once in the page with proper order. Refer this link to know about order of script reference. 
 
<html> 
 
<head> 
 
    <link rel="stylesheet" rel='nofollow' href="~/lib/bootstrap/dist/css/bootstrap.css" /> 
 
    <link rel='nofollow' href="~/lib/syncfusion-javascript/Content/ej/web/bootstrap-theme/ej.web.all.min.css" rel="stylesheet" /> 
 
    <link rel='nofollow' href="~/lib/syncfusion-javascript/Content/ej/web/responsive-css/ej.responsive.css" rel="stylesheet" /> 
 
    <script src="~/lib/jquery/dist/jquery.js"></script> 
 
    <script src="~/lib/jsrender/jsrender.min.js"></script> 
 
    <script src="~/lib/syncfusion-javascript/Scripts/ej/web/ej.web.all.min.js"></script> 
 
</head> 
 
<body> 
 
 
</body> 
 
</html> 
  1. Add ScriptManager to the bottom of the layout.cshtml page. The ScriptManager used to place our control initialization script in the page.
<ej-script-manager></ej-script-manager> 
  1. Now open your view page to render our Syncfusion components in Tag Helper syntax.
<ej-date-picker id="datepicker" value="@DateTime.Now"></ej-date-picker> 
15.   Finally compile your project, after successful compilation then press F5 key to deploy your project. 
 
 
 
Check out the links given below to know about rendering EJ components in ASP.NET Core platform. 
Also, the latest version of Syncfusion Essential Studio ASP.NET Core Nuget Packages can be downloaded from the below link. 
For your convenience, we have also attached a sample of DatePicker control in ASP.NET Core 2.0. Please, download the sample from below link. 
Please, let us know if you need any further assistance. 
Regards, 
Sureshkumar P 


Loader.
Live Chat Icon For mobile
Up arrow icon