Skip to content

Commit 52335d9

Browse files
New breaking changes included.
1 parent 9029320 commit 52335d9

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

MyBlazorProject.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Syncfusion.EJ2.Blazor" Version="17.4.0.50" />
8+
<PackageReference Include="Syncfusion.Blazor" Version="18.1.0.36-beta" />
99
</ItemGroup>
1010

1111
</Project>

Pages/Index.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@page "/"
22

3-
<EjsCalendar TValue="DateTime?"></EjsCalendar>
3+
<SfCalendar TValue="DateTime?"></SfCalendar>
44
<br/>
5-
<EjsGrid DataSource="@EmployeeData"></EjsGrid>
5+
<SfGrid DataSource="@EmployeeData"></SfGrid>
66

77
@code{
88

Pages/_Host.cshtml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414
<base href="~/" />
1515
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
1616
<link href="css/site.css" rel="stylesheet" />
17-
<link href="https://cdn.syncfusion.com/ej2/17.4.50/material.css" rel="stylesheet" />
18-
<script src="https://cdn.syncfusion.com/ej2/17.4.50/dist/ej2.min.js"></script>
19-
<script src="https://cdn.syncfusion.com/ej2/17.4.50/dist/ejs.interop.min.js"></script>
17+
<link href="https://cdn.syncfusion.com/blazor/18.1.36-beta/styles/material.css" rel="stylesheet" />
2018
</head>
2119
<body>
2220
<app>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Documentation: https://ej2.syncfusion.com/blazor/documentation/getting-started/v
66
## Pre-requisites
77
To run this project, you need to install the following pre-requisites in your machine.
88
* Visual Studio 2019 (version 16.4 or later)
9-
* .NET Core SDK 3.1.1
9+
* .NET Core SDK 3.1.2
1010

1111
## How to run this application?
1212
To run this application, you need to first clone or download this `adding-syncfusion-blazor-components-to-blazor-server-app` repository and then open it in Visual Studio 2019. Now, simply build and run your project to view the output.

Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using Microsoft.Extensions.DependencyInjection;
1111
using Microsoft.Extensions.Hosting;
1212
using MyBlazorProject.Data;
13-
using Syncfusion.EJ2.Blazor;
13+
using Syncfusion.Blazor;
1414

1515
namespace MyBlazorProject
1616
{

_Imports.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
@using Microsoft.JSInterop
88
@using MyBlazorProject
99
@using MyBlazorProject.Shared
10-
@using Syncfusion.EJ2.Blazor.Calendars
11-
@using Syncfusion.EJ2.Blazor.Grids;
10+
@using Syncfusion.Blazor.Calendars
11+
@using Syncfusion.Blazor.Grids

0 commit comments

Comments
 (0)