-
Notifications
You must be signed in to change notification settings - Fork 59
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
d59da21
chore: update kendo script and theme version
eyupyusein d289d6b
chore: remove trial and update to latest version
eyupyusein c9575c7
chore: format csproj file
eyupyusein c175b5c
chore: update razor pages project kendo script and theme version
eyupyusein 0bda2ae
chore: use the jquery external cdn
eyupyusein b923e70
chore: remove trial from razor pages and update to latest version
eyupyusein 6b49b18
chore: remove old trial local nuget references
eyupyusein 45664f3
chore: update kendo script and theme version in the csp project
eyupyusein b69f3b2
chore: remove trial from csp project and update to latest version
eyupyusein ced7423
Update Telerik.Examples.RazorPages/Telerik.Examples.RazorPages/Pages/…
eyupyusein b59ca49
Update _Layout.cshtml
eyupyusein d9c9a97
Update _Layout.cshtml
eyupyusein File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
106 changes: 55 additions & 51 deletions
106
Telerik.Examples.ContentSecurityPolicy/Telerik.Examples.ContentSecurityPolicy.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-9.4 MB
...k.Examples.ContentSecurityPolicy/nuget/Telerik.UI.for.AspNet.Core.Trial.2023.3.1010.nupkg
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-23.6 KB
Telerik.Examples.Mvc/nuget/Telerik.Core.Export.Trial.2023.3.1114.nupkg
Binary file not shown.
Binary file removed
BIN
-9.28 MB
Telerik.Examples.Mvc/nuget/Telerik.UI.for.AspNet.Core.Trial.2023.1.425.nupkg
Binary file not shown.
Binary file removed
BIN
-13.7 MB
Telerik.Examples.Mvc/nuget/Telerik.UI.for.AspNet.Core.Trial.2023.3.1114.nupkg
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-44.5 KB
Telerik.Examples.Mvc/nuget/Telerik.Web.Spreadsheet.Trial.2023.3.1114.nupkg
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 43 additions & 43 deletions
86
Telerik.Examples.RazorPages/Telerik.Examples.RazorPages/Telerik.Examples.RazorPages.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 removed
BIN
-239 KB
Telerik.Examples.RazorPages/nuget/Telerik.Documents.Core.Trial.2021.2.614.nupkg
Binary file not shown.
Binary file removed
BIN
-1.2 MB
Telerik.Examples.RazorPages/nuget/Telerik.Documents.Fixed.Trial.2021.2.614.nupkg
Binary file not shown.
Binary file removed
BIN
-9.28 MB
Telerik.Examples.RazorPages/nuget/Telerik.UI.for.AspNet.Core.Trial.2023.1.425.nupkg
Binary file not shown.
Binary file removed
BIN
-40.9 KB
Telerik.Examples.RazorPages/nuget/Telerik.Web.Captcha.Trial.1.1.2.nupkg
Binary file not shown.
Binary file removed
BIN
-15 KB
Telerik.Examples.RazorPages/nuget/Telerik.Web.PDF.Trial.2021.2.616.nupkg
Binary file not shown.
Binary file removed
BIN
-133 KB
Telerik.Examples.RazorPages/nuget/Telerik.Zip.Trial.2021.2.614.nupkg
Binary file not shown.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.