Skip to content

Commit 53a3a83

Browse files
author
Yulia DX
committed
The project target is changed to .NET 5 due to the Breaking Change in DevExpress Blazor: https://supportcenter.devexpress.com/ticket/details/t982678/devexpress-blazor-components-no-longer-support-net-core-3-1
1 parent bb656d7 commit 53a3a83

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CS/BlazorApp_WordProcessing/BlazorApp_WordProcessing.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="DevExpress.Blazor" Version="20.1.6" />
7-
<PackageReference Include="DevExpress.Document.Processor" Version="20.1.11" />
6+
<PackageReference Include="DevExpress.Blazor" Version="21.1.2-beta" />
7+
<PackageReference Include="DevExpress.Document.Processor" Version="21.1.2-beta" />
88
<PackageReference Include="MailKit" Version="2.9.0" />
99
</ItemGroup>
1010
<ItemGroup>

CS/BlazorApp_WordProcessing/Startup.DevExpress.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
//------------------------------------------------------------------------------
2+
//<auto-generated>
23
// Generated by the DevExpress.Blazor package.
34
// To prevent this operation, add the DxExtendStartupHost property to the project and set this property to False.
45
//
56
// BlazorApp_WordProcessing.csproj:
67
//
78
// <Project Sdk="Microsoft.NET.Sdk.Web">
89
// <PropertyGroup>
9-
// <TargetFramework>netcoreapp3.1</TargetFramework>
10+
// <TargetFramework>net5.0</TargetFramework>
1011
// <DxExtendStartupHost>False</DxExtendStartupHost>
1112
// </PropertyGroup>
13+
//</auto-generated>
1214
//------------------------------------------------------------------------------
1315
using System;
1416
using Microsoft.Extensions.DependencyInjection;

0 commit comments

Comments
 (0)