Skip to content

Commit d074923

Browse files
committed
update cs solution
1 parent 29d540d commit d074923

File tree

7 files changed

+58034
-1140
lines changed

7 files changed

+58034
-1140
lines changed

CS/AspNetCoreDashboard.csproj

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
</PropertyGroup>
6-
7-
<PropertyGroup>
8-
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
9-
<RootNamespace>AspNetCoreDashboard</RootNamespace>
10-
<AssemblyName>AspNetCoreDashboard</AssemblyName>
4+
<TargetFramework>net6.0</TargetFramework>
115
</PropertyGroup>
126

137
<ItemGroup>
14-
<PackageReference Include="DevExpress.AspNetCore.Dashboard" Version="19.2.7" />
15-
<PackageReference Include="BuildBundlerMinifier" Version="3.0.415" />
16-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.18" />
17-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
18-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" />
8+
<PackageReference Include="DevExpress.AspNetCore.Dashboard" Version="21.2.10" />
9+
<PackageReference Include="BuildBundlerMinifier" Version="3.2.449" />
10+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.10" />
11+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="6.0.0" />
12+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.10" />
1913
</ItemGroup>
2014

2115
<ItemGroup>

CS/Views/Home/Dashboard.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<body>
2929
<!-- Add the Web Dashboard with the "clientDashboardControl1" name to a View, specify its size, and set the Working Mode to Designer. -->
3030
<div style="position: absolute; left:0;top:0;right:0;bottom:0;">
31-
@(Html.DevExpress().Dashboard("clientDashboardControl1")
31+
@(Html.DevExpress().Dashboard("dashboardControl1")
3232
.WorkingMode(WorkingMode.Designer)
3333
.Width("100%")
3434
.Height("100%")

CS/Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>@ViewData["Title"] - ASPNETCore30Dashboard</title>
6+
<title>@ViewData["Title"] - ASPNETCoreDashboard</title>
77
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
88
<link rel="stylesheet" href="~/css/site.css" />
99
</head>

0 commit comments

Comments
 (0)