├── .gitattributes ├── .gitignore ├── CustomMiddleware ├── CustomMiddleware.sln ├── global.json └── src │ └── CustomMiddleware │ ├── CustomMiddleware.xproj │ ├── Middlewares │ ├── ContentMiddleware.cs │ ├── EditContextMiddleware.cs │ ├── StatusCodeMiddleware.cs │ └── ValidateBrowserMiddleware.cs │ ├── Program.cs │ ├── Project_Readme.html │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── project.json │ └── web.config ├── CustomRouter ├── CustomRouter.sln ├── global.json └── src │ └── CustomRouter │ ├── Controllers │ ├── HomeController.cs │ └── LegacyController.cs │ ├── CustomRouter.xproj │ ├── LegacyRoute.cs │ ├── Program.cs │ ├── Project_Readme.html │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Legacy │ │ └── GetLegacyUrl.cshtml │ └── _ViewImports.cshtml │ ├── project.json │ └── web.config ├── CustomTagHelper ├── CustomTagHelper.sln ├── CustomTagHelper │ ├── .bowerrc │ ├── Controllers │ │ └── HomeController.cs │ ├── CustomTagHelper.xproj │ ├── Models │ │ ├── City.cs │ │ ├── IRepository.cs │ │ └── MemoryRepository.cs │ ├── Program.cs │ ├── Project_Readme.html │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── TagHelpers │ │ ├── ButtonTagHelper.cs │ │ ├── ContentWrapperTagHelper.cs │ │ ├── CoordinatingTagHelpers.cs │ │ ├── FormButtonTagHelper.cs │ │ ├── LabelAndInputTagHelper.cs │ │ ├── SelectiveTagHelper.cs │ │ └── TableCellTagHelper.cs │ ├── Views │ │ ├── Home │ │ │ ├── Create.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ └── _ViewImports.cshtml │ ├── bower.json │ ├── project.json │ ├── web.config │ └── wwwroot │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ │ └── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── external │ │ └── sizzle │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ │ └── src │ │ ├── .jshintrc │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── rcheckableType.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js └── global.json ├── CustomViewComponent ├── CustomViewComponent.sln └── CustomViewComponent │ ├── .bowerrc │ ├── Controllers │ └── HomeController.cs │ ├── CustomViewComponent.xproj │ ├── Models │ ├── City.cs │ ├── CityViewModel.cs │ ├── IRepository.cs │ └── MemoryRepository.cs │ ├── Program.cs │ ├── Project_Readme.html │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── ViewComponents │ ├── CitySummary.cs │ ├── CityWeather.cs │ └── PocoViewComponent.cs │ ├── Views │ ├── Home │ │ ├── Create.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Components │ │ │ ├── CitySummary │ │ │ │ └── Default.cshtml │ │ │ ├── CityWeather │ │ │ │ └── Default.cshtml │ │ │ └── ComboComponent │ │ │ │ └── Default.cshtml │ │ └── _Layout.cshtml │ └── _ViewImports.cshtml │ ├── bower.json │ ├── project.json │ ├── web.config │ └── wwwroot │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── CHANGELOG.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── grunt │ │ ├── .jshintrc │ │ ├── bs-commonjs-generator.js │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-lessdoc-parser.js │ │ ├── bs-raw-files-generator.js │ │ ├── configBridge.json │ │ └── sauce_browsers.yml │ ├── js │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ ├── less │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.less.nuspec │ │ └── bootstrap.nuspec │ ├── package.js │ └── package.json │ └── jquery │ ├── .bower.json │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map │ ├── external │ └── sizzle │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── sizzle.js │ │ ├── sizzle.min.js │ │ └── sizzle.min.map │ └── src │ ├── .jshintrc │ ├── ajax.js │ ├── ajax │ ├── jsonp.js │ ├── load.js │ ├── parseJSON.js │ ├── parseXML.js │ ├── script.js │ ├── var │ │ ├── location.js │ │ ├── nonce.js │ │ └── rquery.js │ └── xhr.js │ ├── attributes.js │ ├── attributes │ ├── attr.js │ ├── classes.js │ ├── prop.js │ ├── support.js │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ ├── access.js │ ├── init.js │ ├── parseHTML.js │ ├── ready.js │ └── var │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ ├── addGetHookIf.js │ ├── adjustCSS.js │ ├── curCSS.js │ ├── defaultDisplay.js │ ├── hiddenVisibleSelectors.js │ ├── showHide.js │ ├── support.js │ └── var │ │ ├── cssExpand.js │ │ ├── getStyles.js │ │ ├── isHidden.js │ │ ├── rmargin.js │ │ ├── rnumnonpx.js │ │ └── swap.js │ ├── data.js │ ├── data │ ├── Data.js │ └── var │ │ ├── acceptData.js │ │ ├── dataPriv.js │ │ └── dataUser.js │ ├── deferred.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ ├── Tween.js │ └── animatedSelector.js │ ├── event.js │ ├── event │ ├── ajax.js │ ├── alias.js │ ├── focusin.js │ ├── support.js │ └── trigger.js │ ├── exports │ ├── amd.js │ └── global.js │ ├── intro.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ ├── _evalUrl.js │ ├── buildFragment.js │ ├── getAll.js │ ├── setGlobalEval.js │ ├── support.js │ ├── var │ │ ├── rcheckableType.js │ │ ├── rscriptType.js │ │ └── rtagName.js │ └── wrapMap.js │ ├── offset.js │ ├── outro.js │ ├── queue.js │ ├── queue │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── traversing.js │ ├── traversing │ ├── findFilter.js │ └── var │ │ ├── dir.js │ │ ├── rneedsContext.js │ │ └── siblings.js │ ├── var │ ├── arr.js │ ├── class2type.js │ ├── concat.js │ ├── document.js │ ├── documentElement.js │ ├── hasOwn.js │ ├── indexOf.js │ ├── pnum.js │ ├── push.js │ ├── rcssNum.js │ ├── rnotwhite.js │ ├── slice.js │ ├── support.js │ └── toString.js │ └── wrap.js ├── DemoPackageCore ├── Shenba.DemoPackage.Core.sln └── Shenba.DemoPackage.Core │ ├── Demo.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Shenba.DemoPackage.Core.csproj │ ├── Shenba.DemoPackage.Core.nuspec │ ├── nuget.exe │ └── project.json ├── README.md ├── StarterKit ├── StarterKit.sln ├── global.json └── src │ ├── StarterKit │ ├── .bowerrc │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── City.cs │ │ ├── IRepository.cs │ │ └── MemoryRepository.cs │ ├── Program.cs │ ├── Project_Readme.html │ ├── Properties │ │ └── launchSettings.json │ ├── StarterKit.xproj │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Create.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ └── _ViewImports.cshtml │ ├── bower.json │ ├── project.json │ ├── web.config │ └── wwwroot │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ │ └── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── external │ │ └── sizzle │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ │ └── src │ │ ├── .jshintrc │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── rcheckableType.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js │ └── StarterKitVsix │ ├── ProjectTemplates │ └── StarterKit.zip │ ├── Properties │ └── AssemblyInfo.cs │ ├── StarterKitVsix.csproj │ ├── index.html │ ├── source.extension.vsixmanifest │ └── stylesheet.css └── UseXunit ├── UseXunit.Tests ├── HomeControllerTest.cs ├── Properties │ └── AssemblyInfo.cs ├── UseXunit.Tests.xproj └── project.json ├── UseXunit.sln ├── global.json └── src └── UseXunit ├── Controllers └── HomeController.cs ├── Program.cs ├── Project_Readme.html ├── Properties └── launchSettings.json ├── Startup.cs ├── UseXunit.xproj ├── project.json └── web.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomMiddleware/CustomMiddleware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/CustomMiddleware.sln -------------------------------------------------------------------------------- /CustomMiddleware/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/global.json -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/CustomMiddleware.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/CustomMiddleware.xproj -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Middlewares/ContentMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Middlewares/ContentMiddleware.cs -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Middlewares/EditContextMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Middlewares/EditContextMiddleware.cs -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Middlewares/StatusCodeMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Middlewares/StatusCodeMiddleware.cs -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Middlewares/ValidateBrowserMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Middlewares/ValidateBrowserMiddleware.cs -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Program.cs -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Project_Readme.html -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Properties/launchSettings.json -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/Startup.cs -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/project.json -------------------------------------------------------------------------------- /CustomMiddleware/src/CustomMiddleware/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomMiddleware/src/CustomMiddleware/web.config -------------------------------------------------------------------------------- /CustomRouter/CustomRouter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/CustomRouter.sln -------------------------------------------------------------------------------- /CustomRouter/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/global.json -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Controllers/LegacyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Controllers/LegacyController.cs -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/CustomRouter.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/CustomRouter.xproj -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/LegacyRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/LegacyRoute.cs -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Program.cs -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Project_Readme.html -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Properties/launchSettings.json -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Startup.cs -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | Content from home controller 2 | -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Views/Legacy/GetLegacyUrl.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Views/Legacy/GetLegacyUrl.cshtml -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/project.json -------------------------------------------------------------------------------- /CustomRouter/src/CustomRouter/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomRouter/src/CustomRouter/web.config -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper.sln -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/CustomTagHelper.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/CustomTagHelper.xproj -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Models/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Models/City.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Models/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Models/IRepository.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Models/MemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Models/MemoryRepository.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Program.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Project_Readme.html -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Properties/launchSettings.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Startup.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/TagHelpers/ButtonTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/TagHelpers/ButtonTagHelper.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/TagHelpers/ContentWrapperTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/TagHelpers/ContentWrapperTagHelper.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/TagHelpers/CoordinatingTagHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/TagHelpers/CoordinatingTagHelpers.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/TagHelpers/FormButtonTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/TagHelpers/FormButtonTagHelper.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/TagHelpers/LabelAndInputTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/TagHelpers/LabelAndInputTagHelper.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/TagHelpers/SelectiveTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/TagHelpers/SelectiveTagHelper.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/TagHelpers/TableCellTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/TagHelpers/TableCellTagHelper.cs -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Views/Home/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Views/Home/Create.cshtml -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/bower.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/project.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/web.config -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/bower.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/bs-lessdoc-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/bs-lessdoc-parser.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/configBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/configBridge.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/grunt/sauce_browsers.yml -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/affix.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/alert.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/button.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/modal.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/popover.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/tab.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/js/transition.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/badges.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/close.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/code.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/forms.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/grid.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/labels.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/media.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/buttons.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/clearfix.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/gradients.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/hide-text.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/list-group.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/opacity.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/pagination.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/reset-text.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/mixins/table-row.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/modals.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/navs.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/pager.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/panels.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/print.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/responsive-embed.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/tables.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/theme.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/type.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/variables.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/less/wells.less -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/nuget/bootstrap.less.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/nuget/bootstrap.less.nuspec -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/package.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/.jshintrc -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/intro.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/CustomTagHelper/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /CustomTagHelper/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomTagHelper/global.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent.sln -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/CustomViewComponent.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/CustomViewComponent.xproj -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Models/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Models/City.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Models/CityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Models/CityViewModel.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Models/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Models/IRepository.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Models/MemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Models/MemoryRepository.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Program.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Project_Readme.html -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Properties/launchSettings.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Startup.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/ViewComponents/CitySummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/ViewComponents/CitySummary.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/ViewComponents/CityWeather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/ViewComponents/CityWeather.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/ViewComponents/PocoViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/ViewComponents/PocoViewComponent.cs -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Views/Home/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Views/Home/Create.cshtml -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Views/Shared/Components/CityWeather/Default.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/bower.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/project.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/web.config -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/bower.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/affix.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/alert.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/button.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/modal.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/popover.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/tab.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/js/transition.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/badges.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/close.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/code.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/forms.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/grid.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/labels.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/media.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/modals.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/navs.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/pager.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/panels.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/print.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/tables.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/theme.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/type.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/variables.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/less/wells.less -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/package.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/.jshintrc -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/intro.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/CustomViewComponent/CustomViewComponent/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /DemoPackageCore/Shenba.DemoPackage.Core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/DemoPackageCore/Shenba.DemoPackage.Core.sln -------------------------------------------------------------------------------- /DemoPackageCore/Shenba.DemoPackage.Core/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/DemoPackageCore/Shenba.DemoPackage.Core/Demo.cs -------------------------------------------------------------------------------- /DemoPackageCore/Shenba.DemoPackage.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/DemoPackageCore/Shenba.DemoPackage.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DemoPackageCore/Shenba.DemoPackage.Core/Shenba.DemoPackage.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/DemoPackageCore/Shenba.DemoPackage.Core/Shenba.DemoPackage.Core.csproj -------------------------------------------------------------------------------- /DemoPackageCore/Shenba.DemoPackage.Core/Shenba.DemoPackage.Core.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/DemoPackageCore/Shenba.DemoPackage.Core/Shenba.DemoPackage.Core.nuspec -------------------------------------------------------------------------------- /DemoPackageCore/Shenba.DemoPackage.Core/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/DemoPackageCore/Shenba.DemoPackage.Core/nuget.exe -------------------------------------------------------------------------------- /DemoPackageCore/Shenba.DemoPackage.Core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/DemoPackageCore/Shenba.DemoPackage.Core/project.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/README.md -------------------------------------------------------------------------------- /StarterKit/StarterKit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/StarterKit.sln -------------------------------------------------------------------------------- /StarterKit/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/global.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Controllers/HomeController.cs -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Models/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Models/City.cs -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Models/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Models/IRepository.cs -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Models/MemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Models/MemoryRepository.cs -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Program.cs -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Project_Readme.html -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Properties/launchSettings.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/StarterKit.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/StarterKit.xproj -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Startup.cs -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Views/Home/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Views/Home/Create.cshtml -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/bower.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/project.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/web.config -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/bower.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/bs-commonjs-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/bs-commonjs-generator.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/bs-lessdoc-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/bs-lessdoc-parser.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/bs-raw-files-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/bs-raw-files-generator.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/configBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/configBridge.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/grunt/sauce_browsers.yml -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/affix.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/alert.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/button.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/modal.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/popover.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/tab.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/js/transition.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/badges.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/close.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/code.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/component-animations.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/forms.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/grid.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/labels.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/media.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/border-radius.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/buttons.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/center-block.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/clearfix.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/gradients.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/grid-framework.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/hide-text.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/list-group.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/nav-divider.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/opacity.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/pagination.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/progress-bar.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/reset-filter.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/reset-text.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/table-row.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/text-emphasis.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/mixins/text-overflow.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/modals.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/navs.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/pager.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/panels.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/print.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/responsive-embed.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/responsive-utilities.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/tables.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/theme.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/type.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/variables.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/less/wells.less -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/nuget/bootstrap.less.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/nuget/bootstrap.less.nuspec -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/package.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/.jshintrc -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/intro.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKit/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKit/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /StarterKit/src/StarterKitVsix/ProjectTemplates/StarterKit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKitVsix/ProjectTemplates/StarterKit.zip -------------------------------------------------------------------------------- /StarterKit/src/StarterKitVsix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKitVsix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StarterKit/src/StarterKitVsix/StarterKitVsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKitVsix/StarterKitVsix.csproj -------------------------------------------------------------------------------- /StarterKit/src/StarterKitVsix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKitVsix/index.html -------------------------------------------------------------------------------- /StarterKit/src/StarterKitVsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKitVsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /StarterKit/src/StarterKitVsix/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/StarterKit/src/StarterKitVsix/stylesheet.css -------------------------------------------------------------------------------- /UseXunit/UseXunit.Tests/HomeControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/UseXunit.Tests/HomeControllerTest.cs -------------------------------------------------------------------------------- /UseXunit/UseXunit.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/UseXunit.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UseXunit/UseXunit.Tests/UseXunit.Tests.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/UseXunit.Tests/UseXunit.Tests.xproj -------------------------------------------------------------------------------- /UseXunit/UseXunit.Tests/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/UseXunit.Tests/project.json -------------------------------------------------------------------------------- /UseXunit/UseXunit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/UseXunit.sln -------------------------------------------------------------------------------- /UseXunit/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/global.json -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/Controllers/HomeController.cs -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/Program.cs -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/Project_Readme.html -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/Properties/launchSettings.json -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/Startup.cs -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/UseXunit.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/UseXunit.xproj -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/project.json -------------------------------------------------------------------------------- /UseXunit/src/UseXunit/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenba2014/AspDotNetCoreMvcExamples/HEAD/UseXunit/src/UseXunit/web.config --------------------------------------------------------------------------------