Skip to content

Commit b69f3b2

Browse files
committed
chore: remove trial from csp project and update to latest version
1 parent 45664f3 commit b69f3b2

File tree

4 files changed

+62
-56
lines changed

4 files changed

+62
-56
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<packageSources>
4-
<add key="Telerik.UI.for.AspNet.Core.Trial.2023.3.1010" value=".\\nuget" />
5-
</packageSources>
3+
<packageSources>
4+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
5+
<add key="Telerik" value="https://nuget.telerik.com/v3/index.json" />
6+
</packageSources>
67
</configuration>
Lines changed: 55 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,59 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<Nullable>disable</Nullable>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
</PropertyGroup>
8-
9-
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
10-
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
11-
</PropertyGroup>
12-
13-
<ItemGroup>
14-
<Compile Remove="Templates\**" />
15-
<Content Remove="Templates\**" />
16-
<EmbeddedResource Remove="Templates\**" />
17-
<None Remove="Templates\**" />
18-
</ItemGroup>
19-
20-
<ItemGroup>
21-
<Folder Include="wwwroot\shared\" />
22-
</ItemGroup>
23-
24-
<ItemGroup>
25-
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.css.map" />
26-
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.min.css.map" />
27-
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.css.map" />
28-
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.min.css.map" />
29-
<None Include="wwwroot\lib\bootstrap\css\bootstrap.css.map" />
30-
<None Include="wwwroot\lib\bootstrap\css\bootstrap.min.css.map" />
31-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js" />
32-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js.map" />
33-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js" />
34-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js.map" />
35-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js" />
36-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js.map" />
37-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js" />
38-
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js.map" />
39-
</ItemGroup>
40-
41-
<ItemGroup>
42-
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
43-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
44-
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.12.0" />
45-
<PackageReference Include="Microsoft.CodeAnalysis.Razor" Version="6.0.36" />
46-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
47-
<PackageReference Include="System.Security.Cryptography.Xml" Version="9.0.2" />
48-
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.2" />
49-
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
50-
<PackageReference Include="Telerik.UI.for.AspNet.Core.Trial" Version="2023.3.1010" />
51-
</ItemGroup>
52-
53-
<ProjectExtensions><VisualStudio><UserProperties UseCdnSupport="" /></VisualStudio></ProjectExtensions>
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<Nullable>disable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
</PropertyGroup>
8+
9+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
10+
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<Compile Remove="Templates\**" />
15+
<Content Remove="Templates\**" />
16+
<EmbeddedResource Remove="Templates\**" />
17+
<None Remove="Templates\**" />
18+
</ItemGroup>
19+
20+
<ItemGroup>
21+
<Folder Include="wwwroot\shared\" />
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.css.map" />
26+
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.min.css.map" />
27+
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.css.map" />
28+
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.min.css.map" />
29+
<None Include="wwwroot\lib\bootstrap\css\bootstrap.css.map" />
30+
<None Include="wwwroot\lib\bootstrap\css\bootstrap.min.css.map" />
31+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js" />
32+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js.map" />
33+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js" />
34+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js.map" />
35+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js" />
36+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js.map" />
37+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js" />
38+
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js.map" />
39+
</ItemGroup>
40+
41+
<ItemGroup>
42+
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
43+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
44+
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.14.0" />
45+
<PackageReference Include="Microsoft.CodeAnalysis.Razor" Version="6.0.36" />
46+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
47+
<PackageReference Include="System.Security.Cryptography.Xml" Version="9.0.2" />
48+
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.2" />
49+
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
50+
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2025.2.520" />
51+
</ItemGroup>
52+
53+
<ProjectExtensions>
54+
<VisualStudio>
55+
<UserProperties UseCdnSupport="" />
56+
</VisualStudio>
57+
</ProjectExtensions>
5458

5559
</Project>

Telerik.Examples.ContentSecurityPolicy/Views/Demo_Overview_CSP/Demo_Overview_CSP.cshtml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<title>@ViewData["Title"] - Telerik.Examples.Mvc</title>
1010

1111
@{
12-
var kendoVersion = "2023.3.1010";
12+
var kendoVersion = "2025.2.520";
13+
var themeVersion = "11.0.2";
1314
}
14-
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/7.0.1/default/default-ocean-blue.css">
15+
<link href="https://kendo.cdn.telerik.com/themes/@themeVersion/default/default-ocean-blue.css" rel="stylesheet" type="text/css" />
1516

1617
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
1718
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g="
Binary file not shown.

0 commit comments

Comments
 (0)