summaryrefslogtreecommitdiffstats
path: root/samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-01 21:26:10 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-01 21:26:10 -0800
commit74b6b4efd2be2680e3067f716829b0c9385ceebe (patch)
tree5f241db63080c6547d9cc635b0bf36dd587b5354 /samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs
parent798fa1c5f55058eb241f257d15e2dd630eb3d4fd (diff)
downloadDotNetOpenAuth-74b6b4efd2be2680e3067f716829b0c9385ceebe.zip
DotNetOpenAuth-74b6b4efd2be2680e3067f716829b0c9385ceebe.tar.gz
DotNetOpenAuth-74b6b4efd2be2680e3067f716829b0c9385ceebe.tar.bz2
Adds a WebAPI sample that is its own authorization server and resource server.
Diffstat (limited to 'samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs')
-rw-r--r--samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs b/samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs
new file mode 100644
index 0000000..6524cf6
--- /dev/null
+++ b/samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs
@@ -0,0 +1,40 @@
+using System.Web;
+using System.Web.Optimization;
+
+namespace OAuth2ProtectedWebApi {
+ public class BundleConfig {
+ // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
+ public static void RegisterBundles(BundleCollection bundles) {
+ bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
+ "~/Scripts/jquery-{version}.js"));
+
+ bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
+ "~/Scripts/jquery-ui-{version}.js"));
+
+ bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
+ "~/Scripts/jquery.unobtrusive*",
+ "~/Scripts/jquery.validate*"));
+
+ // Use the development version of Modernizr to develop with and learn from. Then, when you're
+ // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
+ bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
+ "~/Scripts/modernizr-*"));
+
+ bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
+
+ bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
+ "~/Content/themes/base/jquery.ui.core.css",
+ "~/Content/themes/base/jquery.ui.resizable.css",
+ "~/Content/themes/base/jquery.ui.selectable.css",
+ "~/Content/themes/base/jquery.ui.accordion.css",
+ "~/Content/themes/base/jquery.ui.autocomplete.css",
+ "~/Content/themes/base/jquery.ui.button.css",
+ "~/Content/themes/base/jquery.ui.dialog.css",
+ "~/Content/themes/base/jquery.ui.slider.css",
+ "~/Content/themes/base/jquery.ui.tabs.css",
+ "~/Content/themes/base/jquery.ui.datepicker.css",
+ "~/Content/themes/base/jquery.ui.progressbar.css",
+ "~/Content/themes/base/jquery.ui.theme.css"));
+ }
+ }
+} \ No newline at end of file