Skip to content

Commit 407aed9

Browse files
VicTachevDimitar-Goshev
authored andcommitted
chore: update .net version
1 parent 67e2ff4 commit 407aed9

File tree

3 files changed

+17
-17
lines changed

3 files changed

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

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<PreserveCompilationContext>true</PreserveCompilationContext>
66
<AssemblyName>Kendo-UI-Bootstrap-Integration</AssemblyName>
77
<PackageId>Kendo-UI-Bootstrap-Integration</PackageId>
@@ -14,16 +14,16 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.2.0" />
18-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.13" />
19-
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="2.2.1" />
20-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
21-
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
22-
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="7.0.0" />
23-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
24-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
25-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
26-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0" />
27-
<PackageReference Include="Telerik.UI.for.AspNet.Core.Trial" Version="2023.3.1114" />
17+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.1.1" />
18+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.6" />
19+
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="2.1.7" />
20+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.1.3" />
21+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
22+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
23+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
24+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
25+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
26+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
27+
<PackageReference Include="Telerik.UI.for.AspNet.Core.Trial" Version="2024.2.514" />
2828
</ItemGroup>
2929
</Project>

Kendo-UI-Bootstrap-Integration/src/Kendo-UI-Bootstrap-Integration/Views/Home/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
.Background("transparent"))
129129
.SeriesDefaults(s=>s
130130
.Area()
131-
.Line(l=>l.Style(ChartAreaStyle.Smooth))
131+
.Line(l=>l.Style(ChartSeriesLineStyle.Smooth))
132132
.Stack(true))
133133
.CategoryAxis(a=>a
134134
.Categories(m=>m.Date)

Kendo-UI-Bootstrap-Integration/src/Kendo-UI-Bootstrap-Integration/Views/Shared/_Layout.cshtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
66
<meta name="description" content="The demo shows how to use Telerik UI for ASP.NET Core alongside Twitter Bootstrap. The grid layout and responsive CSS is provided by Bootstrap, and components are provided byTelerik UI for ASP.NET Core.">
77
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" />
8-
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/7.0.2/bootstrap/bootstrap-main.css" />
8+
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/8.0.1/bootstrap/bootstrap-main.css" />
99

1010
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
11-
<script src="https://kendo.cdn.telerik.com/2023.3.1114/js/kendo.all.min.js"></script>
12-
<script src="https://kendo.cdn.telerik.com/2023.3.1114/js/kendo.timezones.min.js"></script>
13-
<script src="https://kendo.cdn.telerik.com/2023.3.1114/js/kendo.aspnetmvc.min.js"></script>
11+
<script src="https://kendo.cdn.telerik.com/2024.2.514/js/kendo.all.min.js"></script>
12+
<script src="https://kendo.cdn.telerik.com/2024.2.514/js/kendo.timezones.min.js"></script>
13+
<script src="https://kendo.cdn.telerik.com/2024.2.514/js/kendo.aspnetmvc.min.js"></script>
1414
<link rel="stylesheet" href="@Url.Content("~/css/styles.css")" />
1515
</head>
1616
<body>

0 commit comments

Comments
 (0)