Skip to content

chore: remove trial versions for core examples repo #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Telerik.Examples.ContentSecurityPolicy/NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="Telerik.UI.for.AspNet.Core.Trial.2023.3.1010" value=".\\nuget" />
</packageSources>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="Telerik" value="https://nuget.telerik.com/v3/index.json" />
</packageSources>
</configuration>
Original file line number Diff line number Diff line change
@@ -1,55 +1,59 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>

<ItemGroup>
<Compile Remove="Templates\**" />
<Content Remove="Templates\**" />
<EmbeddedResource Remove="Templates\**" />
<None Remove="Templates\**" />
</ItemGroup>

<ItemGroup>
<Folder Include="wwwroot\shared\" />
</ItemGroup>

<ItemGroup>
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.min.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.min.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap.min.css.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js.map" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Razor" Version="6.0.36" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="9.0.2" />
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.2" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Telerik.UI.for.AspNet.Core.Trial" Version="2023.3.1010" />
</ItemGroup>

<ProjectExtensions><VisualStudio><UserProperties UseCdnSupport="" /></VisualStudio></ProjectExtensions>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>

<ItemGroup>
<Compile Remove="Templates\**" />
<Content Remove="Templates\**" />
<EmbeddedResource Remove="Templates\**" />
<None Remove="Templates\**" />
</ItemGroup>

<ItemGroup>
<Folder Include="wwwroot\shared\" />
</ItemGroup>

<ItemGroup>
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap-grid.min.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap-reboot.min.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap.css.map" />
<None Include="wwwroot\lib\bootstrap\css\bootstrap.min.css.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.js.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.bundle.min.js.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.js.map" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js" />
<None Include="wwwroot\lib\bootstrap\js\bootstrap.min.js.map" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.14.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Razor" Version="6.0.36" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="9.0.2" />
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.2" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2025.2.520" />
</ItemGroup>

<ProjectExtensions>
<VisualStudio>
<UserProperties UseCdnSupport="" />
</VisualStudio>
</ProjectExtensions>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
<title>@ViewData["Title"] - Telerik.Examples.Mvc</title>

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

<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g="
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
<title>@ViewData["Title"] - Telerik.Examples.ContentSecurityPolicy</title>

@{
var kendoVersion = "2023.3.1010";
var kendoVersion = "2025.2.520";
var themeVersion = "11.0.2";
}
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/7.0.1/default/default-ocean-blue.css">
<link href="https://kendo.cdn.telerik.com/themes/@themeVersion/default/default-ocean-blue.css" rel="stylesheet" type="text/css" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update the reference to the JSZip library (<script src="https://unpkg.com/jszip/dist/jszip.min.js"></script>)


<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g="
Expand Down
Binary file not shown.
2 changes: 0 additions & 2 deletions Telerik.Examples.Mvc/NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<packageSources>
<clear /> <!-- ensure only the sources defined below are used -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="Telerik.UI.for.AspNet.Core.Trial.2022.2.510" value=".\\nuget" />
<add key="Telerik" value="https://nuget.telerik.com/v3/index.json" />
<add key="Telerik.Web.Spreadsheet.Trial.2023.1.426" value=".\\nuget" />
</packageSources>
</configuration>

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.OData" Version="9.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.2" />
Expand All @@ -23,10 +23,10 @@
<PackageReference Include="System.Drawing.Common" Version="9.0.2" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Telerik.Core.Export.Trial" Version="2023.3.1114" />
<PackageReference Include="Telerik.Web.Spreadsheet.Trial" Version="2023.3.1114" />
<PackageReference Include="Telerik.UI.for.AspNet.Core.Trial" Version="2023.3.1114" />
<PackageReference Include="Telerik.Web.Captcha.Trial" Version="1.1.2" />
<PackageReference Include="Telerik.Core.Export" Version="2025.2.520" />
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2025.2.520" />
<PackageReference Include="Telerik.Web.Captcha" Version="2.0.2" />
<PackageReference Include="Telerik.Web.Spreadsheet" Version="2025.2.520" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - Telerik.Examples.Mvc</title>
@{
var kendoVersion = "2023.3.1114";
var kendoVersion = "2025.2.520";
var themeVersion = "11.0.2";
}
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/7.0.2/default/default-ocean-blue.css">
<link href="https://kendo.cdn.telerik.com/themes/@themeVersion/default/default-ocean-blue.css" rel="stylesheet" type="text/css" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update the reference to the JSZip library (<script src="https://unpkg.com/jszip/dist/jszip.min.js"></script>)


<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="https://kendo.cdn.telerik.com/@kendoVersion/js/jszip.min.js"></script>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 1 addition & 3 deletions Telerik.Examples.RazorPages/NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<packageSources>
<clear /> <!-- ensure only the sources defined below are used -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="Telerik.UI.for.AspNet.Core.Trial.2022.2.621" value=".\\nuget" />
<add key="Telerik.Web.PDF.Trial.2021.2.616" value=".\\nuget" />
<add key="Telerik.Web.Captcha" value=".\\nuget" />
<add key="Telerik" value="https://nuget.telerik.com/v3/index.json" />
</packageSources>
</configuration>

Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - Telerik.Examples.RazorPages</title>
@{
var kendoVersion = "2023.1.425";
var kendoVersion = "2025.2.520";
var themeVersion = "11.0.2";
}
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/6.3.0/default/default-ocean-blue.css">
<link href="https://kendo.cdn.telerik.com/themes/@themeVersion/default/default-ocean-blue.css" rel="stylesheet" type="text/css" />

<script src="https://kendo.cdn.telerik.com/@kendoVersion/js/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="https://kendo.cdn.telerik.com/@kendoVersion/js/jszip.min.js"></script>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<script src="https://kendo.cdn.telerik.com/@kendoVersion/js/jszip.min.js"></script>
<script src="https://unpkg.com/jszip/dist/jszip.min.js"></script>

<script src="https://kendo.cdn.telerik.com/@kendoVersion/js/kendo.all.min.js"></script>
<script src="https://kendo.cdn.telerik.com/@kendoVersion/js/kendo.aspnetmvc.min.js"></script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>


<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />
<PackageReference Include="System.Drawing.Common" Version="9.0.2" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="9.0.2" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Telerik.UI.for.AspNet.Core.Trial" Version="2023.1.425" />
<PackageReference Include="Telerik.Web.Captcha.Trial" Version="1.1.2" />
<PackageReference Include="Telerik.Web.PDF.Trial" Version="2021.2.616" />
</ItemGroup>

<ItemGroup>
<Folder Include="Pages\Editor\" />
<Folder Include="Pages\Shared\EditorTemplates\" />
</ItemGroup>


<ItemGroup>
<None Include="Pages\ButtonGroup\ButtonGroupIndex.cshtml" />
<None Include="wwwroot\Content\TabStrip\ajaxContent1.html" />
<None Include="wwwroot\Content\TabStrip\ajaxContent2.html" />
<None Include="wwwroot\Content\TabStrip\ajaxContent7.html" />
</ItemGroup>


<ItemGroup>
<None Update="Pages\ScrollView\ScrollViewImages\image2.jpg">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>


<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />
<PackageReference Include="System.Drawing.Common" Version="9.0.2" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="9.0.2" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2025.2.520" />
<PackageReference Include="Telerik.Web.Captcha" Version="2.0.2" />
<PackageReference Include="Telerik.Web.PDF" Version="2025.2.520" />
</ItemGroup>

<ItemGroup>
<Folder Include="Pages\Editor\" />
<Folder Include="Pages\Shared\EditorTemplates\" />
</ItemGroup>


<ItemGroup>
<None Include="Pages\ButtonGroup\ButtonGroupIndex.cshtml" />
<None Include="wwwroot\Content\TabStrip\ajaxContent1.html" />
<None Include="wwwroot\Content\TabStrip\ajaxContent2.html" />
<None Include="wwwroot\Content\TabStrip\ajaxContent7.html" />
</ItemGroup>


<ItemGroup>
<None Update="Pages\ScrollView\ScrollViewImages\image2.jpg">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.