Skip to content

Commit 14a9092

Browse files
committedNov 21, 2019
Add MVC ClientThemeChange example telerik/kendo#9651
1 parent 2f18c5b commit 14a9092

File tree

134 files changed

+303060
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+303060
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29326.143
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChangingThemesOnTheClient", "ChangingThemesOnTheClient\ChangingThemesOnTheClient.csproj", "{FC6C2562-FA5C-4AA2-B9AA-3E6075274AD5}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{FC6C2562-FA5C-4AA2-B9AA-3E6075274AD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{FC6C2562-FA5C-4AA2-B9AA-3E6075274AD5}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{FC6C2562-FA5C-4AA2-B9AA-3E6075274AD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{FC6C2562-FA5C-4AA2-B9AA-3E6075274AD5}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {9808B3A0-F45E-4C98-868B-8C9314A46697}
24+
EndGlobalSection
25+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
using System.Web;
2+
using System.Web.Optimization;
3+
4+
namespace ChangingThemesOnTheClient
5+
{
6+
public class BundleConfig
7+
{
8+
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
9+
public static void RegisterBundles(BundleCollection bundles)
10+
{
11+
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
12+
"~/Scripts/jquery-{version}.js"));
13+
14+
// Use the development version of Modernizr to develop with and learn from. Then, when you're
15+
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
16+
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
17+
"~/Scripts/modernizr-*"));
18+
19+
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
20+
"~/Scripts/bootstrap.js",
21+
"~/Scripts/respond.js"));
22+
23+
bundles.Add(new StyleBundle("~/Content/css").Include(
24+
"~/Content/bootstrap.css",
25+
"~/Content/Site.css"));
26+
bundles.Add(new ScriptBundle("~/bundles/kendo").Include(
27+
"~/Scripts/kendo/kendo.all.min.js",
28+
//Uncomment below if you use the Scheduler.
29+
"~/Scripts/kendo/kendo.timezones.min.js",
30+
"~/Scripts/kendo/kendo.aspnetmvc.min.js"));
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)