├── blog.AspNetReact ├── Views │ ├── _ViewStart.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ ├── About.cshtml │ │ └── Contact.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ └── Web.config ├── favicon.ico ├── Global.asax ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── .babelrc ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── BundleConfig.cs ├── Scripts │ ├── Home │ │ └── react │ │ │ └── Index.js │ ├── jquery.validate.unobtrusive.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.min.js │ └── bootstrap.min.js ├── Content │ ├── Site.css │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ └── bootstrap-theme.css ├── Global.asax.cs ├── Controllers │ └── HomeController.cs ├── package.json ├── webpack.config.js ├── Web.Debug.config ├── Web.Release.config ├── Properties │ └── AssemblyInfo.cs ├── packages.config ├── Web.config ├── ApplicationInsights.config └── blog.AspNetReact.csproj ├── blog.AspNetReact.sln ├── .gitattributes └── .gitignore /blog.AspNetReact/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /blog.AspNetReact/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Home Page"; 3 | } 4 |
-------------------------------------------------------------------------------- /blog.AspNetReact/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dance2die/blog.AspNetReact/HEAD/blog.AspNetReact/favicon.ico -------------------------------------------------------------------------------- /blog.AspNetReact/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="blog.AspNetReact.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /blog.AspNetReact/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dance2die/blog.AspNetReact/HEAD/blog.AspNetReact/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /blog.AspNetReact/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dance2die/blog.AspNetReact/HEAD/blog.AspNetReact/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /blog.AspNetReact/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dance2die/blog.AspNetReact/HEAD/blog.AspNetReact/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /blog.AspNetReact/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dance2die/blog.AspNetReact/HEAD/blog.AspNetReact/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /blog.AspNetReact/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /blog.AspNetReact/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@babel/preset-env", 5 | { 6 | "targets": { 7 | "browsers": ["last 2 versions", "ie >= 11"] 8 | } 9 | } 10 | ], 11 | 12 | "@babel/preset-react" 13 | ], 14 | "plugins": ["@babel/plugin-proposal-class-properties"] 15 | } 16 | -------------------------------------------------------------------------------- /blog.AspNetReact/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |