├── .gitattributes ├── .gitignore ├── LICENSE ├── README.EN.md ├── README.md ├── RELEASE_NOTES.md ├── Statement-of-Income-and-Expense.md ├── bash.exe.stackdump ├── docs ├── README.md ├── SurgingFunction.png ├── _config.yml ├── docs.cn │ └── INDEX.md └── docs.en │ ├── Cache.md │ ├── CacheInterception.md │ ├── ConfigMicroservices.md │ ├── DependencyInjection.md │ └── INDEX.md ├── logo.jpg ├── sh.exe.stackdump ├── src ├── .dockerignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── Surging.ApiGateway │ ├── .bowerrc │ ├── Configs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cacheSettings.json │ │ └── gatewaySettings.json │ ├── Controllers │ │ ├── AuthenticationManageController.cs │ │ ├── HomeController.cs │ │ ├── ServiceManageController.cs │ │ └── ServicesController.cs │ ├── CustomExceptionFilterAttribute.cs │ ├── Models │ │ ├── CacheEndpointParam.cs │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json │ ├── ServiceExceptionFilter.cs │ ├── Startup.cs │ ├── Surging.ApiGateway.csproj │ ├── Views │ │ ├── AuthenticationManage │ │ │ ├── EditServiceToken.cshtml │ │ │ ├── Index.cshtml │ │ │ └── _AuthenticationManage.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── ServiceManage │ │ │ ├── EditCacheEndPoint.cshtml │ │ │ ├── EditFaultTolerant.cshtml │ │ │ ├── FaultTolerant.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ServiceCache.cshtml │ │ │ ├── ServiceCacheEndpoint.cshtml │ │ │ ├── ServiceDescriptor.cshtml │ │ │ ├── ServiceManage.cshtml │ │ │ ├── ServiceSubscriber.cshtml │ │ │ └── _ServiceManageLayout.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── Partial │ │ │ │ └── ManageNav.cshtml │ │ │ ├── _AppLayout.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _ManagerLayout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── bower.json │ ├── bundleconfig.json │ └── wwwroot │ │ ├── apps │ │ ├── authmanage │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ └── index.css │ │ │ │ ├── js │ │ │ │ ├── modules │ │ │ │ │ └── authenticationmanage.js │ │ │ │ ├── url.config.js │ │ │ │ └── view │ │ │ │ │ └── address.guide.js │ │ │ │ └── templates │ │ │ │ └── authmanage_template.tpl │ │ └── servicemange │ │ │ └── assets │ │ │ ├── css │ │ │ ├── img │ │ │ │ └── app_icon_servicemange.png │ │ │ └── index.css │ │ │ ├── js │ │ │ ├── modules │ │ │ │ └── ServiceManage.js │ │ │ ├── url.config.js │ │ │ └── view │ │ │ │ ├── address.guide.js │ │ │ │ ├── faulttolerant.guide.js │ │ │ │ ├── register.guide.js │ │ │ │ ├── servicecache.guide.js │ │ │ │ ├── servicecacheendpoint.guide.js │ │ │ │ ├── servicedescriptor.guide.js │ │ │ │ └── servicesubscriber.guide.js │ │ │ └── templates │ │ │ ├── faulttolerant_template.tpl │ │ │ ├── registermanage_template.tpl │ │ │ ├── servicecache_template.tpl │ │ │ ├── servicecacheendpoint_template.tpl │ │ │ ├── servicedescriptor_template.tpl │ │ │ ├── servicemanage_template.tpl │ │ │ └── servicesubscriber_template.tpl │ │ ├── assets │ │ ├── css │ │ │ ├── base │ │ │ │ ├── ace │ │ │ │ │ ├── ace-ie.min.css │ │ │ │ │ ├── ace-rtl.min.css │ │ │ │ │ ├── ace-skins.min.css │ │ │ │ │ ├── ace.min.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── app_publiccss.css │ │ │ │ ├── font │ │ │ │ │ └── font-awesome-ie7.min.css │ │ │ │ └── global.css │ │ │ ├── fonts │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── surgingfonticon.eot │ │ │ │ ├── surgingfonticon.svg │ │ │ │ ├── surgingfonticon.ttf │ │ │ │ └── surgingfonticon.woff │ │ │ ├── manager │ │ │ │ ├── img │ │ │ │ │ └── app_icon_all.png │ │ │ │ ├── index.css │ │ │ │ ├── public.css │ │ │ │ └── themes │ │ │ │ │ └── default │ │ │ │ │ └── skin.css │ │ │ └── site.css │ │ ├── images │ │ │ └── Heading.jpg │ │ ├── js │ │ │ ├── base │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── extensions.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.map │ │ │ │ └── seajs-text.js │ │ │ ├── config.js │ │ │ ├── ie │ │ │ │ ├── html5shiv.min.js │ │ │ │ └── respond.min.js │ │ │ ├── modules │ │ │ │ └── dt.pjax.event.js │ │ │ ├── plugins │ │ │ │ ├── ace-elements.min.js │ │ │ │ ├── ace-extra.min.js │ │ │ │ ├── ace.min.js │ │ │ │ ├── bootbox.min.js │ │ │ │ ├── jquery.pjax_n.js │ │ │ │ └── jquery.tmpl.min.js │ │ │ ├── seajs │ │ │ │ ├── sea-debug.js │ │ │ │ ├── sea.js │ │ │ │ ├── sea.js.map │ │ │ │ ├── seajs-text-debug.js │ │ │ │ └── seajs-text.js │ │ │ ├── url.config.js │ │ │ └── view │ │ │ │ └── main.guide.js │ │ └── 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 │ │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── build │ │ │ │ └── release.js │ │ │ ├── changelog.md │ │ │ ├── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── additional │ │ │ │ │ ├── accept.js │ │ │ │ │ ├── additional.js │ │ │ │ │ ├── alphanumeric.js │ │ │ │ │ ├── bankaccountNL.js │ │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ │ ├── bic.js │ │ │ │ │ ├── cifES.js │ │ │ │ │ ├── cpfBR.js │ │ │ │ │ ├── creditcardtypes.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── dateFA.js │ │ │ │ │ ├── dateITA.js │ │ │ │ │ ├── dateNL.js │ │ │ │ │ ├── extension.js │ │ │ │ │ ├── giroaccountNL.js │ │ │ │ │ ├── iban.js │ │ │ │ │ ├── integer.js │ │ │ │ │ ├── ipv4.js │ │ │ │ │ ├── ipv6.js │ │ │ │ │ ├── lettersonly.js │ │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ │ ├── mobileNL.js │ │ │ │ │ ├── mobileUK.js │ │ │ │ │ ├── nieES.js │ │ │ │ │ ├── nifES.js │ │ │ │ │ ├── notEqualTo.js │ │ │ │ │ ├── nowhitespace.js │ │ │ │ │ ├── pattern.js │ │ │ │ │ ├── phoneNL.js │ │ │ │ │ ├── phoneUK.js │ │ │ │ │ ├── phoneUS.js │ │ │ │ │ ├── phonesUK.js │ │ │ │ │ ├── postalCodeCA.js │ │ │ │ │ ├── postalcodeBR.js │ │ │ │ │ ├── postalcodeIT.js │ │ │ │ │ ├── postalcodeNL.js │ │ │ │ │ ├── postcodeUK.js │ │ │ │ │ ├── require_from_group.js │ │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ │ ├── statesUS.js │ │ │ │ │ ├── strippedminlength.js │ │ │ │ │ ├── time.js │ │ │ │ │ ├── time12h.js │ │ │ │ │ ├── url2.js │ │ │ │ │ ├── vinUS.js │ │ │ │ │ ├── zipcodeUS.js │ │ │ │ │ └── ziprange.js │ │ │ │ ├── ajax.js │ │ │ │ ├── core.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ └── validation.jquery.json │ │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.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 │ │ │ │ ├── support.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 │ │ │ │ ├── accepts.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ ├── acceptData.js │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ ├── animatedSelector.js │ │ │ │ └── support.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 │ │ │ │ ├── createSafeFragment.js │ │ │ │ ├── getAll.js │ │ │ │ ├── setGlobalEval.js │ │ │ │ ├── support.js │ │ │ │ ├── var │ │ │ │ │ ├── nodeNames.js │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ ├── rleadingWhitespace.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 │ │ │ │ ├── support.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ ├── dir.js │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── deletedIds.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 │ │ │ └── seajs │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ ├── bower.json │ │ │ └── dist │ │ │ ├── runtime-debug.js │ │ │ ├── runtime.js │ │ │ ├── sea-debug.js │ │ │ ├── sea.js │ │ │ ├── standalone-debug.js │ │ │ └── standalone.js │ │ └── favicon.ico ├── Surging.Core │ ├── Surging.Core.ApiGateWay │ │ ├── Aggregation │ │ │ ├── ServicePartProvider.cs │ │ │ └── ServicePartType.cs │ │ ├── AppConfig.cs │ │ ├── Configurations │ │ │ ├── AccessPolicy.cs │ │ │ ├── Register.cs │ │ │ ├── RegisterProvider.cs │ │ │ ├── ServiceAggregation.cs │ │ │ ├── ServicePart.cs │ │ │ └── Services.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── IServicePartProvider.cs │ │ ├── OAuth │ │ │ ├── IAuthorizationServerProvider.cs │ │ │ └── Implementation │ │ │ │ ├── AuthorizationServerProvider.cs │ │ │ │ ├── Configurations │ │ │ │ ├── ConfigInfo.cs │ │ │ │ ├── GatewayConfigurationExtensions.cs │ │ │ │ ├── GatewayConfigurationProvider.cs │ │ │ │ └── GatewayConfigurationSource.cs │ │ │ │ ├── EncryptMode.cs │ │ │ │ ├── JWTSecureDataHeader.cs │ │ │ │ └── JWTSecureDataType.cs │ │ ├── ServiceDiscovery │ │ │ ├── IFaultTolerantProvider.cs │ │ │ ├── IServiceCacheProvider.cs │ │ │ ├── IServiceDiscoveryProvider.cs │ │ │ ├── IServiceRegisterProvider.cs │ │ │ ├── IServiceSubscribeProvider.cs │ │ │ └── Implementation │ │ │ │ ├── FaultTolerantProvider.cs │ │ │ │ ├── ServiceAddressModel.cs │ │ │ │ ├── ServiceCacheProvider.cs │ │ │ │ ├── ServiceDiscoveryProvider.cs │ │ │ │ ├── ServiceRegisterProvider.cs │ │ │ │ └── ServiceSubscribeProvider.cs │ │ ├── ServiceResult.cs │ │ ├── ServiceStatusCode.cs │ │ ├── Surging.Core.ApiGateWay.csproj │ │ └── Utilities │ │ │ └── ServiceResult.cs │ ├── Surging.Core.CPlatform │ │ ├── Address │ │ │ ├── AddressModel.cs │ │ │ └── IpAddressModel.cs │ │ ├── AppConfig.cs │ │ ├── CPlatformContainer.cs │ │ ├── CPlatformResource.Designer.cs │ │ ├── CPlatformResource.resx │ │ ├── Cache │ │ │ ├── CacheDescriptor.cs │ │ │ ├── CacheEndpoint.cs │ │ │ ├── ICacheNodeProvider.cs │ │ │ ├── ICacheProvider.cs │ │ │ ├── IServiceCacheFactory.cs │ │ │ ├── IServiceCacheManager.cs │ │ │ ├── Implementation │ │ │ │ └── ServiceCacheManagerBase.cs │ │ │ ├── ServiceCache.cs │ │ │ └── ServiceCacheDescriptor.cs │ │ ├── CommunicationProtocol.cs │ │ ├── Configurations │ │ │ ├── CPlatformConfigurationExtensions.cs │ │ │ ├── CPlatformConfigurationProvider.cs │ │ │ ├── CPlatformConfigurationSource.cs │ │ │ ├── IConfigurationWatchManager.cs │ │ │ ├── ModulePackage.cs │ │ │ ├── ProtocolPortOptions.cs │ │ │ ├── Remote │ │ │ │ ├── IConfigurationParser.cs │ │ │ │ ├── JsonConfigurationParser.cs │ │ │ │ ├── RemoteConfigurationEvents.cs │ │ │ │ ├── RemoteConfigurationExtensions.cs │ │ │ │ ├── RemoteConfigurationProvider.cs │ │ │ │ └── RemoteConfigurationSource.cs │ │ │ ├── SurgingServerOptions.cs │ │ │ └── Watch │ │ │ │ ├── ConfigurationWatch.cs │ │ │ │ └── ConfigurationWatchManager.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── Convertibles │ │ │ ├── ITypeConvertibleProvider.cs │ │ │ ├── ITypeConvertibleService.cs │ │ │ └── Implementation │ │ │ │ ├── DefaultTypeConvertibleProvider.cs │ │ │ │ └── DefaultTypeConvertibleService.cs │ │ ├── DependencyResolution │ │ │ ├── DependencyResolverExtensions.cs │ │ │ ├── IDependencyResolver.cs │ │ │ └── ServiceResolver.cs │ │ ├── Engines │ │ │ ├── IServiceEngine.cs │ │ │ ├── IServiceEngineBuilder.cs │ │ │ ├── IServiceEngineLifetime.cs │ │ │ └── Implementation │ │ │ │ ├── DefaultServiceEngineBuilder.cs │ │ │ │ ├── ServiceEngineLifetime.cs │ │ │ │ └── VirtualPathProviderServiceEngine .cs │ │ ├── EventBus │ │ │ ├── Events │ │ │ │ ├── EventContext.cs │ │ │ │ ├── IIntegrationEventHandler.cs │ │ │ │ └── IntegrationEvent.cs │ │ │ ├── IEventBusSubscriptionsManager.cs │ │ │ ├── ISubscriptionAdapt.cs │ │ │ ├── Implementation │ │ │ │ └── IEventBus.cs │ │ │ └── InMemoryEventBusSubscriptionsManager.cs │ │ ├── Exceptions │ │ │ ├── CPlatformException.cs │ │ │ ├── CPlatformRemoteException.cs │ │ │ ├── CommunicationException.cs │ │ │ └── RegisterConnectionException.cs │ │ ├── Filters │ │ │ ├── IAuthorizationFilter.cs │ │ │ ├── IExceptionFilter.cs │ │ │ ├── IFilter.cs │ │ │ └── Implementation │ │ │ │ ├── AuthorizationAttribute.cs │ │ │ │ ├── AuthorizationFilterAttribute.cs │ │ │ │ ├── AuthorizationType.cs │ │ │ │ ├── ExceptionFilterAttribute.cs │ │ │ │ ├── FilterAttribute.cs │ │ │ │ └── RpcActionExecutedContext.cs │ │ ├── HashAlgorithms │ │ │ ├── ConsistentHash.cs │ │ │ ├── HashAlgorithm.cs │ │ │ └── IHashAlgorithm.cs │ │ ├── IdentifyAttribute.cs │ │ ├── Ids │ │ │ ├── IServiceIdGenerator.cs │ │ │ └── Implementation │ │ │ │ └── DefaultServiceIdGenerator.cs │ │ ├── Ioc │ │ │ ├── BaseRepository.cs │ │ │ ├── IServiceBehavior.cs │ │ │ ├── IServiceKey.cs │ │ │ ├── ModuleNameAttribute.cs │ │ │ └── ServiceBase.cs │ │ ├── Logging │ │ │ └── NullLogger.cs │ │ ├── Messages │ │ │ ├── HttpMessage.cs │ │ │ ├── HttpResultMessage.cs │ │ │ ├── MessagePackTransportMessageType.cs │ │ │ ├── RemoteInvokeMessage.cs │ │ │ ├── RemoteInvokeResultMessage.cs │ │ │ └── TransportMessage.cs │ │ ├── Module │ │ │ ├── AbstractModule.cs │ │ │ ├── AssemblyEntry.cs │ │ │ ├── BusinessModule.cs │ │ │ ├── Component.cs │ │ │ ├── ContainerBuilderWrapper.cs │ │ │ ├── EchoService.cs │ │ │ ├── EnginePartModule.cs │ │ │ ├── IEchoService.cs │ │ │ ├── IModuleManager.cs │ │ │ ├── IModuleProvider.cs │ │ │ ├── ModuleProvider.cs │ │ │ ├── ModuleState.cs │ │ │ ├── RegistrationExtensions.cs │ │ │ └── SystemModule.cs │ │ ├── Mqtt │ │ │ ├── IMqttServiceFactory.cs │ │ │ ├── IMqttServiceRouteManager.cs │ │ │ ├── Implementation │ │ │ │ └── MqttServiceRouteManagerBase.cs │ │ │ ├── MqttDescriptor.cs │ │ │ ├── MqttServiceDescriptor.cs │ │ │ └── MqttServiceRoute.cs │ │ ├── RequetData.cs │ │ ├── Routing │ │ │ ├── IServiceRouteFactory.cs │ │ │ ├── IServiceRouteManager.cs │ │ │ ├── IServiceRouteProvider.cs │ │ │ ├── Implementation │ │ │ │ ├── DefaultServiceRouteFactory.cs │ │ │ │ ├── DefaultServiceRouteProvider.cs │ │ │ │ ├── ServiceRouteManagerBase.cs │ │ │ │ └── SharedFileServiceRouteManager.cs │ │ │ ├── ServiceRoute.cs │ │ │ ├── ServiceRouteContext.cs │ │ │ ├── ServiceRouteDescriptor.cs │ │ │ ├── ServiceRouteWatch.cs │ │ │ └── Template │ │ │ │ └── RoutePatternParser.cs │ │ ├── Runtime │ │ │ ├── Client │ │ │ │ ├── Address │ │ │ │ │ └── Resolvers │ │ │ │ │ │ ├── IAddressResolver.cs │ │ │ │ │ │ └── Implementation │ │ │ │ │ │ ├── DefaultAddressResolver.cs │ │ │ │ │ │ └── Selectors │ │ │ │ │ │ ├── IAddressSelector.cs │ │ │ │ │ │ └── Implementation │ │ │ │ │ │ ├── AddressSelectorBase.cs │ │ │ │ │ │ ├── AddressSelectorMode.cs │ │ │ │ │ │ ├── FairPollingAdrSelector.cs │ │ │ │ │ │ ├── HashAlgorithmAdrSelector.cs │ │ │ │ │ │ ├── PollingAddressSelector.cs │ │ │ │ │ │ └── RandomAddressSelector.cs │ │ │ │ ├── HealthChecks │ │ │ │ │ ├── IHealthCheckService.cs │ │ │ │ │ └── Implementation │ │ │ │ │ │ ├── DefaultHealthCheckService.cs │ │ │ │ │ │ └── HealthCheckEventArgs.cs │ │ │ │ ├── IRemoteInvokeService.cs │ │ │ │ ├── IServiceHeartbeatManager.cs │ │ │ │ ├── IServiceSubscribeManager.cs │ │ │ │ ├── IServiceSubscriberFactory.cs │ │ │ │ ├── Implementation │ │ │ │ │ ├── DefaultServiceHeartbeatManager.cs │ │ │ │ │ ├── DefaultServiceSubscriberFactory.cs │ │ │ │ │ ├── RemoteInvokeService.cs │ │ │ │ │ └── ServiceSubscribeManagerBase.cs │ │ │ │ ├── RemoteInvokeContext.cs │ │ │ │ ├── ServiceSubscriber.cs │ │ │ │ └── ServiceSubscriberDescriptor.cs │ │ │ └── Server │ │ │ │ ├── IServiceEntryLocate.cs │ │ │ │ ├── IServiceEntryManager.cs │ │ │ │ ├── IServiceEntryProvider.cs │ │ │ │ ├── IServiceExecutor.cs │ │ │ │ ├── IServiceHost.cs │ │ │ │ ├── IServiceTokenGenerator.cs │ │ │ │ ├── Implementation │ │ │ │ ├── DefaultServiceEntryLocate.cs │ │ │ │ ├── DefaultServiceEntryManager.cs │ │ │ │ ├── DefaultServiceExecutor.cs │ │ │ │ ├── DefaultServiceHost.cs │ │ │ │ ├── ServiceDiscovery │ │ │ │ │ ├── Attributes │ │ │ │ │ │ ├── AttributeServiceEntryProvider.cs │ │ │ │ │ │ ├── ServiceAttribute.cs │ │ │ │ │ │ ├── ServiceBundleAttribute.cs │ │ │ │ │ │ ├── ServiceDescriptorAttribute.cs │ │ │ │ │ │ └── ServiceMetadataAttribute.cs │ │ │ │ │ ├── IClrServiceEntryFactory.cs │ │ │ │ │ └── Implementation │ │ │ │ │ │ └── ClrServiceEntryFactory.cs │ │ │ │ ├── ServiceHostAbstract.cs │ │ │ │ └── ServiceTokenGenerator.cs │ │ │ │ └── ServiceEntry.cs │ │ ├── Serialization │ │ │ ├── ISerializer.cs │ │ │ ├── Implementation │ │ │ │ ├── JsonSerializer.cs │ │ │ │ ├── StringByteArraySerializer.cs │ │ │ │ └── StringObjectSerializer.cs │ │ │ └── SerializerExtensions.cs │ │ ├── ServiceDescriptor.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ ├── Support │ │ │ ├── Attributes │ │ │ │ └── CommandAttribute.cs │ │ │ ├── IBreakeRemoteInvokeService.cs │ │ │ ├── IClusterInvoker.cs │ │ │ ├── IFallbackInvoker.cs │ │ │ ├── IServiceCommandManager.cs │ │ │ ├── IServiceCommandProvider.cs │ │ │ ├── Implementation │ │ │ │ ├── BreakeRemoteInvokeService.cs │ │ │ │ ├── FailoverHandoverInvoker.cs │ │ │ │ ├── FailoverInjectionInvoker.cs │ │ │ │ ├── ServiceCommandBase.cs │ │ │ │ ├── ServiceCommandManagerBase.cs │ │ │ │ └── ServiceCommandProvider.cs │ │ │ ├── ServiceCommand.cs │ │ │ ├── ServiceCommandDescriptor.cs │ │ │ ├── ServiceInvokeListenInfo.cs │ │ │ └── StrategyType.cs │ │ ├── Surging.Core.CPlatform.csproj │ │ ├── Transport │ │ │ ├── Codec │ │ │ │ ├── ITransportMessageCodecFactory.cs │ │ │ │ ├── ITransportMessageDecoder.cs │ │ │ │ ├── ITransportMessageEncoder.cs │ │ │ │ └── Implementation │ │ │ │ │ ├── JsonTransportMessageCodecFactory.cs │ │ │ │ │ ├── JsonTransportMessageDecoder.cs │ │ │ │ │ └── JsonTransportMessageEncoder.cs │ │ │ ├── IMessageListener.cs │ │ │ ├── IMessageSender.cs │ │ │ ├── ITransportClient.cs │ │ │ ├── ITransportClientFactory.cs │ │ │ └── Implementation │ │ │ │ ├── MessageListener.cs │ │ │ │ ├── RpcContext.cs │ │ │ │ └── TransportClient.cs │ │ └── Utilities │ │ │ ├── CancellationTokenExtensions.cs │ │ │ ├── Check.cs │ │ │ ├── DebugCheck.cs │ │ │ ├── EnvironmentHelper.cs │ │ │ ├── FastInvoke.cs │ │ │ ├── ManualResetValueTaskSource.cs │ │ │ ├── NetUtils.cs │ │ │ ├── ServiceLocator.cs │ │ │ ├── StringExtensions.cs │ │ │ ├── TaskHelpers.cs │ │ │ └── UtilityType.cs │ ├── Surging.Core.Caching │ │ ├── AddressResolvers │ │ │ ├── IAddressResolver.cs │ │ │ └── Implementation │ │ │ │ └── DefaultAddressResolver.cs │ │ ├── AppConfig.cs │ │ ├── CacheContainer.cs │ │ ├── CacheTargetType.cs │ │ ├── CachingModule.cs │ │ ├── CachingResources.Designer.cs │ │ ├── CachingResources.resx │ │ ├── Configurations │ │ │ ├── CacheConfigurationExtensions.cs │ │ │ ├── CacheConfigurationProvider.cs │ │ │ ├── CacheConfigurationSource.cs │ │ │ ├── IConfigurationWatchProvider.cs │ │ │ ├── Implementation │ │ │ │ └── ConfigurationWatchProvider.cs │ │ │ └── Remote │ │ │ │ ├── IConfigurationParser.cs │ │ │ │ ├── JsonConfigurationParser.cs │ │ │ │ ├── RemoteConfigurationEvents.cs │ │ │ │ ├── RemoteConfigurationExtensions.cs │ │ │ │ ├── RemoteConfigurationProvider.cs │ │ │ │ └── RemoteConfigurationSource.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── DependencyResolution │ │ │ ├── DependencyResolverExtensions.cs │ │ │ ├── IDependencyResolver.cs │ │ │ └── ServiceResolver.cs │ │ ├── HashAlgorithms │ │ │ ├── ConsistentHash.cs │ │ │ ├── ConsistentHashNode.cs │ │ │ ├── HashAlgorithm.cs │ │ │ └── IHashAlgorithm.cs │ │ ├── HealthChecks │ │ │ ├── IHealthCheckService.cs │ │ │ └── Implementation │ │ │ │ └── DefaultHealthCheckService.cs │ │ ├── IdentifyCacheAttribute.cs │ │ ├── Interfaces │ │ │ └── ICacheClient.cs │ │ ├── Internal │ │ │ └── Implementation │ │ │ │ ├── DefaultCacheNodeProvider.cs │ │ │ │ └── DefaultServiceCacheFactory.cs │ │ ├── Models │ │ │ ├── CachingProvider.cs │ │ │ ├── Map.cs │ │ │ ├── Property.cs │ │ │ └── binding.cs │ │ ├── NetCache │ │ │ ├── GCThreadProvider.cs │ │ │ ├── MemoryCache.cs │ │ │ └── MemoryCacheProvider.cs │ │ ├── ObjectPool.cs │ │ ├── RedisCache │ │ │ ├── RedisCacheClient.cs │ │ │ ├── RedisContext.cs │ │ │ ├── RedisEndpoint.cs │ │ │ ├── RedisProvider.cs │ │ │ └── StackExchangeRedisExtensions.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ ├── Surging.Core.Caching.csproj │ │ └── Utilities │ │ │ ├── CacheException.cs │ │ │ ├── Check.cs │ │ │ └── DebugCheck.cs │ ├── Surging.Core.Codec.MessagePack │ │ ├── ContainerBuilderExtensions.cs │ │ ├── MessagePackModule.cs │ │ ├── MessagePackTransportMessageCodecFactory.cs │ │ ├── MessagePackTransportMessageDecoder.cs │ │ ├── MessagePackTransportMessageEncoder.cs │ │ ├── Messages │ │ │ ├── DynamicItem.cs │ │ │ ├── MessagePackRemoteInvokeMessage.cs │ │ │ ├── MessagePackRemoteInvokeResultMessage.cs │ │ │ └── MessagePackTransportMessage.cs │ │ ├── Surging.Core.Codec.MessagePack.csproj │ │ └── Utilities │ │ │ └── SerializerUtilitys.cs │ ├── Surging.Core.Codec.ProtoBuffer │ │ ├── ContainerBuilderExtensions.cs │ │ ├── Messages │ │ │ ├── DynamicItem.cs │ │ │ ├── ProtoBufferRemoteInvokeMessage.cs │ │ │ ├── ProtoBufferRemoteInvokeResultMessage.cs │ │ │ └── ProtoBufferTransportMessage.cs │ │ ├── ProtoBufferModule.cs │ │ ├── ProtoBufferTransportMessageCodecFactory.cs │ │ ├── ProtoBufferTransportMessageDecoder.cs │ │ ├── ProtoBufferTransportMessageEncoder.cs │ │ ├── Surging.Core.Codec.ProtoBuffer.csproj │ │ └── Utilities │ │ │ └── SerializerUtilitys.cs │ ├── Surging.Core.Common │ │ ├── ApiResult.cs │ │ ├── CommonModule.cs │ │ ├── Extensions │ │ │ └── EnumExtensions.cs │ │ ├── ServicesException │ │ │ └── ServiceException.cs │ │ └── Surging.Core.Common.csproj │ ├── Surging.Core.Consul │ │ ├── AppConfig.cs │ │ ├── Configurations │ │ │ ├── ConfigInfo.cs │ │ │ ├── ConsulConfigurationExtensions.cs │ │ │ ├── ConsulConfigurationProvider.cs │ │ │ ├── ConsulConfigurationSource.cs │ │ │ └── ConsulOption.cs │ │ ├── ConsulModule.cs │ │ ├── ConsulMqttServiceRouteManager.cs │ │ ├── ConsulServiceCacheManager.cs │ │ ├── ConsulServiceCommandManager.cs │ │ ├── ConsulServiceRouteManager.cs │ │ ├── ConsulServiceSubscribeManager.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── Internal │ │ │ ├── Cluster │ │ │ │ ├── HealthChecks │ │ │ │ │ ├── IHealthCheckService.cs │ │ │ │ │ └── Implementation │ │ │ │ │ │ └── DefaultHealthCheckService.cs │ │ │ │ └── Implementation │ │ │ │ │ └── Selectors │ │ │ │ │ ├── IConsulAddressSelector.cs │ │ │ │ │ └── Implementation │ │ │ │ │ ├── AddressSelectorMode.cs │ │ │ │ │ ├── ConsulAddressSelectorBase.cs │ │ │ │ │ └── ConsulRandomAddressSelector.cs │ │ │ ├── IConsulClientProvider.cs │ │ │ └── Implementation │ │ │ │ └── DefaultConsulClientProvider.cs │ │ ├── Package.nuspec │ │ ├── Surging.Core.Consul.csproj │ │ ├── Utilitys │ │ │ └── ConsulClientExtensions.cs │ │ └── WatcherProvider │ │ │ ├── IClientWatchManager.cs │ │ │ └── Implementation │ │ │ ├── ChildWatchRegistration.cs │ │ │ ├── ChildrenMonitorWatcher.cs │ │ │ ├── ClientWatchManager.cs │ │ │ ├── NodeMonitorWatcher.cs │ │ │ ├── ReconnectionWatcher.cs │ │ │ ├── WatchRegistration.cs │ │ │ ├── Watcher.cs │ │ │ └── WatcherBase.cs │ ├── Surging.Core.DotNetty │ │ ├── Adapter │ │ │ └── TransportMessageChannelHandlerAdapter.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── DotNettyMessageSender.cs │ │ ├── DotNettyModule.cs │ │ ├── DotNettyServerMessageListener.cs │ │ ├── DotNettyTransportClientFactory.cs │ │ └── Surging.Core.DotNetty.csproj │ ├── Surging.Core.EventBusKafka │ │ ├── Appconfig.cs │ │ ├── Configurations │ │ │ ├── EventBusConfigurationExtensions.cs │ │ │ ├── EventBusConfigurationProvider.cs │ │ │ ├── EventBusConfigurationSource.cs │ │ │ ├── KafkaOptions.cs │ │ │ └── OffsetResetMode.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── EventBusKafkaModule.cs │ │ ├── IConsumeConfigurator.cs │ │ ├── IKafkaPersisterConnection.cs │ │ ├── Implementation │ │ │ ├── DefaultConsumeConfigurator.cs │ │ │ ├── EventBusKafka.cs │ │ │ ├── KafkaConnectionType.cs │ │ │ ├── KafkaConsumerPersistentConnection.cs │ │ │ ├── KafkaPersistentConnectionBase.cs │ │ │ ├── KafkaProducerPersistentConnection.cs │ │ │ └── KafkaSubscriptionAdapt.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ ├── Surging.Core.EventBusKafka.csproj │ │ └── Utilities │ │ │ ├── ExtensionsToFastActivator.cs │ │ │ └── FastInvoker.cs │ ├── Surging.Core.EventBusRabbitMQ │ │ ├── AppConfig.cs │ │ ├── Attributes │ │ │ └── QueueConsumerAttribute.cs │ │ ├── Configurations │ │ │ ├── EventBusConfigurationExtensions.cs │ │ │ ├── EventBusConfigurationProvider.cs │ │ │ ├── EventBusConfigurationSource.cs │ │ │ └── EventBusOption.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── EventBusRabbitMQModule.cs │ │ ├── IConsumeConfigurator.cs │ │ ├── IRabbitMQPersisterConnection.cs │ │ ├── Implementation │ │ │ ├── DefaultConsumeConfigurator.cs │ │ │ ├── DefaultRabbitMQPersisterConnection.cs │ │ │ ├── EventBusRabbitMQ.cs │ │ │ └── RabbitMqSubscriptionAdapt.cs │ │ ├── QueueConsumerMode.cs │ │ ├── RabbitmqLifetime.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ ├── Surging.Core.EventBusRabbitMQ.csproj │ │ └── Utilities │ │ │ ├── ExtensionsToFastActivator.cs │ │ │ └── FastInvoker.cs │ ├── Surging.Core.KestrelHttpServer │ │ ├── Abstractions │ │ │ ├── ActionContext.cs │ │ │ ├── ActionResult.cs │ │ │ ├── ContentResult.cs │ │ │ ├── FileContentResult.cs │ │ │ ├── FileResult.cs │ │ │ └── IActionResult.cs │ │ ├── AppConfig.cs │ │ ├── DefaultHttpServiceHost.cs │ │ ├── HttpExecutor.cs │ │ ├── HttpMessageListener.cs │ │ ├── HttpServerMessageSender.cs │ │ ├── HttpServiceHost.cs │ │ ├── Internal │ │ │ ├── DefaultServiceSchemaProvider.cs │ │ │ ├── FileStreamResult.cs │ │ │ ├── HttpFormCollection.cs │ │ │ ├── HttpFormFile.cs │ │ │ ├── HttpFormFileCollection.cs │ │ │ ├── IServiceSchemaProvider.cs │ │ │ └── StreamCopyOperation.cs │ │ ├── KestrelHttpMessageListener.cs │ │ ├── KestrelHttpModule.cs │ │ ├── StatusCode.cs │ │ └── Surging.Core.KestrelHttpServer.csproj │ ├── Surging.Core.Log4net │ │ ├── Log4NetLogger.cs │ │ ├── Log4NetProvider.cs │ │ ├── Log4netModule.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ └── Surging.Core.Log4net.csproj │ ├── Surging.Core.NLog │ │ ├── NLogModule.cs │ │ ├── NLogProvider.cs │ │ ├── NLogger.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ └── Surging.Core.Nlog.csproj │ ├── Surging.Core.Protocol.Http │ │ ├── ContainerBuilderExtensions.cs │ │ ├── DotNettyHttpServerMessageListener.cs │ │ ├── DotNettyHttpServerMessageSender.cs │ │ ├── HttpProtocolModule.cs │ │ ├── HttpServiceExecutor.cs │ │ ├── HttpServiceHost.cs │ │ ├── StatusCode.cs │ │ └── Surging.Core.Protocol.Http.csproj │ ├── Surging.Core.Protocol.Mqtt │ │ ├── DotNettyMqttServerMessageListener.cs │ │ ├── Implementation │ │ │ ├── DefaultMqttServiceFactory.cs │ │ │ └── ServerMqttHandlerService.cs │ │ ├── Internal │ │ │ ├── Channel │ │ │ │ └── MqttChannel.cs │ │ │ ├── Enums │ │ │ │ ├── Behavior.cs │ │ │ │ ├── ConfirmStatus.cs │ │ │ │ ├── ConnReturnCode.cs │ │ │ │ ├── MessageType.cs │ │ │ │ ├── SessionStatus.cs │ │ │ │ └── SubscribeStatus.cs │ │ │ ├── Messages │ │ │ │ ├── ConnectMessage.cs │ │ │ │ ├── MqttMessage.cs │ │ │ │ ├── MqttWillMessage.cs │ │ │ │ ├── RetainMessage.cs │ │ │ │ ├── SendMqttMessage.cs │ │ │ │ └── SessionMessage.cs │ │ │ ├── Runtime │ │ │ │ ├── IMqttBehaviorProvider.cs │ │ │ │ ├── IMqttBrokerEntryManger.cs │ │ │ │ ├── IMqttRemoteInvokeService.cs │ │ │ │ ├── IMqttRomtePublishService.cs │ │ │ │ ├── Implementation │ │ │ │ │ ├── DefaultMqttBehaviorProvider.cs │ │ │ │ │ ├── DefaultMqttBrokerEntryManager.cs │ │ │ │ │ ├── MqttRemoteInvokeService.cs │ │ │ │ │ └── MqttRomtePublishService.cs │ │ │ │ ├── MqttRemoteInvokeContext.cs │ │ │ │ ├── Runnable.cs │ │ │ │ ├── SacnScheduled.cs │ │ │ │ └── ScanRunnable.cs │ │ │ └── Services │ │ │ │ ├── AbstractChannelService.cs │ │ │ │ ├── IChannelService.cs │ │ │ │ ├── IClientSessionService.cs │ │ │ │ ├── IMessagePushService.cs │ │ │ │ ├── IWillService.cs │ │ │ │ ├── Implementation │ │ │ │ ├── ClientSessionService.cs │ │ │ │ ├── MessagePushService.cs │ │ │ │ ├── MqttChannelService.cs │ │ │ │ └── WillService.cs │ │ │ │ └── MqttBehavior.cs │ │ ├── MqttHandlerServiceBase.cs │ │ ├── MqttProtocolModule.cs │ │ ├── MqttServiceHost.cs │ │ ├── Surging.Core.Protocol.Mqtt.csproj │ │ └── Util │ │ │ └── MessageIdGenerater.cs │ ├── Surging.Core.Protocol.WS │ │ ├── Attributes │ │ │ └── BehaviorContractAttribute.cs │ │ ├── Configurations │ │ │ ├── BehaviorOption.cs │ │ │ └── WebSocketOptions.cs │ │ ├── DefaultWSServerMessageListener.cs │ │ ├── Runtime │ │ │ ├── IWSServiceEntryProvider.cs │ │ │ ├── Implementation │ │ │ │ └── DefaultWSServiceEntryProvider.cs │ │ │ └── WSServiceEntry.cs │ │ ├── Surging.Core.Protocol.WS.csproj │ │ ├── WSProtocolModule.cs │ │ ├── WSServiceBase.cs │ │ └── WSServiceHost.cs │ ├── Surging.Core.ProxyGenerator │ │ ├── ContainerBuilderExtensions.cs │ │ ├── FastReflection │ │ │ ├── ConstructorInvoker.cs │ │ │ ├── MethodInvoker.cs │ │ │ └── PropertyAccessor.cs │ │ ├── IServiceProxyFactory.cs │ │ ├── IServiceProxyGenerater.cs │ │ ├── IServiceProxyProvider.cs │ │ ├── Implementation │ │ │ ├── RemoteServiceProxy.cs │ │ │ ├── ServiceProxyBase.cs │ │ │ ├── ServiceProxyFactory.cs │ │ │ ├── ServiceProxyGenerater.cs │ │ │ └── ServiceProxyProvider.cs │ │ ├── Interceptors │ │ │ ├── CacheInterceptor.cs │ │ │ ├── ICacheInvocation.cs │ │ │ ├── IInterceptor.cs │ │ │ ├── IInterceptorProvider.cs │ │ │ ├── IInvocation.cs │ │ │ ├── Implementation │ │ │ │ ├── AbstractInvocation.cs │ │ │ │ ├── ActionInvocation.cs │ │ │ │ ├── InterceptorProvider.cs │ │ │ │ └── KeyAttribute.cs │ │ │ └── InvocationMethods.cs │ │ ├── ProxyServiceBase.cs │ │ ├── RegistrationExtensions.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ ├── ServiceProxyModule.cs │ │ ├── Surging.Core.ProxyGenerator.csproj │ │ └── Utilitys │ │ │ ├── AttributeFactory.cs │ │ │ └── CompilationUtilitys.cs │ ├── Surging.Core.Redis │ │ ├── Configurations │ │ │ └── ConfigInfo.cs │ │ ├── Extensions │ │ │ └── StackExchangeRedisExtensions.cs │ │ ├── Provider │ │ │ ├── ICacheClient.cs │ │ │ └── Implementation │ │ │ │ ├── RedisCacheClient.cs │ │ │ │ ├── RedisEndpoint.cs │ │ │ │ └── RedisProvider.cs │ │ └── Surging.Core.Redis.csproj │ ├── Surging.Core.ServiceHosting │ │ ├── Internal │ │ │ ├── IApplicationLifetime.cs │ │ │ ├── IHostLifetime.cs │ │ │ ├── IServiceHost.cs │ │ │ ├── IServiceHostBuilder.cs │ │ │ └── Implementation │ │ │ │ ├── ApplicationLifetime.cs │ │ │ │ ├── ConfigureBuilder.cs │ │ │ │ ├── ConfigureContainerBuilder.cs │ │ │ │ ├── ConfigureServicesBuilder.cs │ │ │ │ ├── ConsoleLifetime.cs │ │ │ │ ├── ServiceHost.cs │ │ │ │ ├── ServiceHostBuilder.cs │ │ │ │ └── StartupLoader.cs │ │ ├── ServiceCollectionExtensions.cs │ │ ├── ServiceHostBuilderExtensions.cs │ │ ├── Startup │ │ │ ├── IStartup.cs │ │ │ └── Implementation │ │ │ │ ├── ConventionBasedStartup.cs │ │ │ │ ├── DelegateStartup.cs │ │ │ │ ├── StartupBase.cs │ │ │ │ └── StartupMethods.cs │ │ └── Surging.Core.ServiceHosting.csproj │ ├── Surging.Core.Swagger │ │ ├── Surging.Core.Swagger.csproj │ │ ├── Swagger │ │ │ ├── Application │ │ │ │ ├── SwaggerBuilderExtensions.cs │ │ │ │ ├── SwaggerContractResolver.cs │ │ │ │ ├── SwaggerMiddleware.cs │ │ │ │ ├── SwaggerOptions.cs │ │ │ │ └── SwaggerSerializerFactory.cs │ │ │ └── Model │ │ │ │ ├── ApiKeyScheme.cs │ │ │ │ ├── BasicAuthScheme.cs │ │ │ │ ├── ISwaggerProvider.cs │ │ │ │ ├── OAuth2Scheme.cs │ │ │ │ ├── SecurityScheme.cs │ │ │ │ └── SwaggerDocument.cs │ │ ├── SwaggerGen │ │ │ ├── Application │ │ │ │ ├── ConfigureSchemaRegistryOptions.cs │ │ │ │ ├── ConfigureSwaggerGeneratorOptions.cs │ │ │ │ ├── SwaggerApplicationConvention.cs │ │ │ │ ├── SwaggerGenOptions.cs │ │ │ │ ├── SwaggerGenOptionsExtensions.cs │ │ │ │ └── SwaggerGenServiceCollectionExtensions.cs │ │ │ ├── Generator │ │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ │ ├── ApiParameterDescriptionExtensions.cs │ │ │ │ ├── ApiResponseTypeExtensions.cs │ │ │ │ ├── IDocumentFilter.cs │ │ │ │ ├── IOperationFilter.cs │ │ │ │ ├── IParameterFilter.cs │ │ │ │ ├── ISchemaFilter.cs │ │ │ │ ├── ISchemaRegistry.cs │ │ │ │ ├── ISchemaRegistryFactory.cs │ │ │ │ ├── JsonContractExtensions.cs │ │ │ │ ├── JsonPropertyExtensions.cs │ │ │ │ ├── SchemaExtensions.cs │ │ │ │ ├── SchemaIdManager.cs │ │ │ │ ├── SchemaRegistry.cs │ │ │ │ ├── SchemaRegistryFactory.cs │ │ │ │ ├── SchemaRegistryOptions.cs │ │ │ │ ├── StringExtensions.cs │ │ │ │ ├── SwaggerGenerator.cs │ │ │ │ ├── SwaggerGeneratorOptions.cs │ │ │ │ └── TypeExtensions.cs │ │ │ └── XmlComments │ │ │ │ ├── XmlCommentsDocumentFilter.cs │ │ │ │ ├── XmlCommentsMemberNameHelper.cs │ │ │ │ ├── XmlCommentsOperationFilter.cs │ │ │ │ ├── XmlCommentsSchemaFilter.cs │ │ │ │ └── XmlCommentsTextHelper.cs │ │ └── SwaggerUI │ │ │ ├── SwaggerUIBuilderExtensions.cs │ │ │ ├── SwaggerUIMiddleware.cs │ │ │ ├── SwaggerUIOptions.cs │ │ │ ├── SwaggerUIOptionsExtensions.cs.cs │ │ │ ├── index.html │ │ │ └── node_modules │ │ │ └── swagger-ui-dist │ │ │ ├── absolute-path.js │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── oauth2-redirect.html │ │ │ ├── package.json │ │ │ ├── swagger-ui-bundle.js │ │ │ ├── swagger-ui-bundle.js.map │ │ │ ├── swagger-ui-dist-3.17.5.tgz │ │ │ ├── swagger-ui-standalone-preset.js │ │ │ ├── swagger-ui-standalone-preset.js.map │ │ │ ├── swagger-ui.css │ │ │ ├── swagger-ui.css.map │ │ │ ├── swagger-ui.js │ │ │ └── swagger-ui.js.map │ ├── Surging.Core.System │ │ ├── Intercept │ │ │ ├── CacheKeyAttribute.cs │ │ │ ├── CacheProviderExtension.cs │ │ │ ├── CacheProviderInterceptor.cs │ │ │ ├── CachingMethod.cs │ │ │ ├── InterceptMethodAttribute.cs │ │ │ ├── LogProviderInterceptor.cs │ │ │ ├── LoggerInterceptAttribute.cs │ │ │ └── SectionType.cs │ │ ├── Ioc │ │ │ ├── ModuleNameAttribute.cs │ │ │ └── RegistrationExtensions.cs │ │ ├── Module │ │ │ ├── AbstractModule.cs │ │ │ ├── Attributes │ │ │ │ ├── AssemblyDisableStopAndUninstalledAttribute.cs │ │ │ │ ├── AssemblyModuleTypeAttribute.cs │ │ │ │ ├── ModelBinderTypeAttribute.cs │ │ │ │ └── ModuleDescriptionAttribute.cs │ │ │ ├── BusinessModule.cs │ │ │ ├── Component.cs │ │ │ ├── ContainerBuilderWrapper.cs │ │ │ ├── ModuleType.cs │ │ │ ├── RegistrationExtensions.cs │ │ │ └── SystemModule.cs │ │ ├── MongoProvider │ │ │ ├── Attributes │ │ │ │ └── CollectionNameAttribute.cs │ │ │ ├── Entity.cs │ │ │ ├── IEntity.cs │ │ │ ├── MongoConfig.cs │ │ │ ├── MongoModule.cs │ │ │ ├── QueryParams.cs │ │ │ ├── Repositories │ │ │ │ ├── IMongoRepository.cs │ │ │ │ └── MongoRepository.cs │ │ │ └── Util.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ServiceBase.cs │ │ └── Surging.Core.System.csproj │ └── Surging.Core.Zookeeper │ │ ├── AppConfig.cs │ │ ├── Configurations │ │ ├── ConfigInfo.cs │ │ ├── ZookeeperConfigurationExtensions.cs │ │ ├── ZookeeperConfigurationProvider.cs │ │ ├── ZookeeperConfigurationSource.cs │ │ └── ZookeeperOption.cs │ │ ├── ContainerBuilderExtensions.cs │ │ ├── Internal │ │ ├── Cluster │ │ │ ├── HealthChecks │ │ │ │ ├── IHealthCheckService.cs │ │ │ │ └── Implementation │ │ │ │ │ └── DefaultHealthCheckService.cs │ │ │ └── Implementation │ │ │ │ └── Selectors │ │ │ │ ├── IZookeeperAddressSelector.cs │ │ │ │ └── Implementation │ │ │ │ ├── AddressSelectorMode.cs │ │ │ │ ├── ZookeeperAddressSelectorBase.cs │ │ │ │ └── ZookeeperRandomAddressSelector.cs │ │ ├── IZookeeperClientProvider.cs │ │ └── Implementation │ │ │ └── DefaultZookeeperClientProvider.cs │ │ ├── Surging.Core.Zookeeper.csproj │ │ ├── WatcherProvider │ │ ├── ChildrenMonitorWatcher.cs │ │ ├── NodeMonitorWatcher.cs │ │ ├── ReconnectionWatcher.cs │ │ └── WatcherBase.cs │ │ ├── ZooKeeperMqttServiceRouteManager.cs │ │ ├── ZooKeeperServiceRouteManager.cs │ │ ├── ZooKeeperServiceSubscribeManager.cs │ │ ├── ZookeeperModule.cs │ │ ├── ZookeeperServiceCacheManager.cs │ │ └── ZookeeperServiceCommandManager.cs ├── Surging.IModuleServices │ ├── Surging.IModuleServices.Common │ │ ├── IChatService.cs │ │ ├── IControllerService.cs │ │ ├── IRoteMangeService.cs │ │ ├── IUserService.cs │ │ ├── IntercepteModule.cs │ │ ├── Models │ │ │ ├── AuthenticationRequestData.cs │ │ │ ├── BaseModel.cs │ │ │ ├── Events │ │ │ │ ├── LogoutEvent.cs │ │ │ │ └── UserEvent.cs │ │ │ ├── IdentityUser.cs │ │ │ ├── RoteModel.cs │ │ │ ├── UserMode.cs │ │ │ ├── UserModel.cs │ │ │ └── WillMessage.cs │ │ └── Surging.IModuleServices.Common.csproj │ └── Surging.IModuleServices.Manger │ │ ├── IManagerService.cs │ │ └── Surging.IModuleServices.Manager.csproj ├── Surging.Modules │ ├── Surging.Modules.Common │ │ ├── Domain │ │ │ ├── ChatService.cs │ │ │ ├── ControllerService.cs │ │ │ ├── PersonService.cs │ │ │ ├── RoteMangeService.cs │ │ │ └── UserService.cs │ │ ├── IntegrationEvents │ │ │ └── EventHandling │ │ │ │ ├── UserLoginDateChangeHandler.cs │ │ │ │ └── UserLogoutDataChangeHandler.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── PublishProfiles │ │ │ │ └── FolderProfile.pubxml │ │ ├── Repositories │ │ │ └── UserRepository.cs │ │ └── Surging.Modules.Common.csproj │ └── Surging.Modules.Manager │ │ ├── Domain │ │ └── ManagerService.cs │ │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── Surging.Modules.Manager.csproj ├── Surging.Services │ ├── Surging.Services.Client │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── PublishProfiles │ │ │ │ └── FolderProfile.pubxml │ │ ├── Startup.cs │ │ ├── Surging.Services.Client.csproj │ │ ├── cacheSettings.json │ │ ├── eventBusSettings.json │ │ ├── log4net.config │ │ ├── nLog.config │ │ └── surgingSettings.json │ └── Surging.Services.Server │ │ ├── Configs │ │ ├── Zookeeper.json │ │ └── consul.json │ │ ├── NLog.config │ │ ├── Program.cs │ │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Surging.Services.Server.csproj │ │ ├── SurgingServiceEngine.cs │ │ ├── cacheSettings.json │ │ ├── eventBusSettings.json │ │ ├── log4net.config │ │ └── surgingSettings.json ├── Surging.Web │ ├── Surging.Web.csproj │ ├── default.htm │ └── f5.htm ├── Surging.sln ├── WebSocket │ └── WebSocketCore │ │ ├── ByteOrder.cs │ │ ├── CloseEventArgs.cs │ │ ├── CloseStatusCode.cs │ │ ├── CompressionMethod.cs │ │ ├── ErrorEventArgs.cs │ │ ├── Ext.cs │ │ ├── Fin.cs │ │ ├── HttpBase.cs │ │ ├── HttpRequest.cs │ │ ├── HttpResponse.cs │ │ ├── LogData.cs │ │ ├── LogLevel.cs │ │ ├── Logger.cs │ │ ├── Mask.cs │ │ ├── MessageEventArgs.cs │ │ ├── Net │ │ ├── AuthenticationBase.cs │ │ ├── AuthenticationChallenge.cs │ │ ├── AuthenticationResponse.cs │ │ ├── AuthenticationSchemes.cs │ │ ├── Chunk.cs │ │ ├── ChunkStream.cs │ │ ├── ChunkedRequestStream.cs │ │ ├── ClientSslConfiguration.cs │ │ ├── Cookie.cs │ │ ├── CookieCollection.cs │ │ ├── CookieException.cs │ │ ├── EndPointListener.cs │ │ ├── EndPointManager.cs │ │ ├── HttpBasicIdentity.cs │ │ ├── HttpConnection.cs │ │ ├── HttpDigestIdentity.cs │ │ ├── HttpHeaderInfo.cs │ │ ├── HttpHeaderType.cs │ │ ├── HttpListener.cs │ │ ├── HttpListenerAsyncResult.cs │ │ ├── HttpListenerContext.cs │ │ ├── HttpListenerException.cs │ │ ├── HttpListenerPrefix.cs │ │ ├── HttpListenerPrefixCollection.cs │ │ ├── HttpListenerRequest.cs │ │ ├── HttpListenerResponse.cs │ │ ├── HttpRequestHeader.cs │ │ ├── HttpResponseHeader.cs │ │ ├── HttpStatusCode.cs │ │ ├── HttpStreamAsyncResult.cs │ │ ├── HttpUtility.cs │ │ ├── HttpVersion.cs │ │ ├── InputChunkState.cs │ │ ├── InputState.cs │ │ ├── LineState.cs │ │ ├── NetworkCredential.cs │ │ ├── QueryStringCollection.cs │ │ ├── ReadBufferState.cs │ │ ├── RequestStream.cs │ │ ├── ResponseStream.cs │ │ ├── ServerSslConfiguration.cs │ │ ├── WebHeaderCollection.cs │ │ └── WebSockets │ │ │ ├── HttpListenerWebSocketContext.cs │ │ │ ├── TcpListenerWebSocketContext.cs │ │ │ └── WebSocketContext.cs │ │ ├── Opcode.cs │ │ ├── PayloadData.cs │ │ ├── Program.cs │ │ ├── Rsv.cs │ │ ├── Server │ │ ├── HttpRequestEventArgs.cs │ │ ├── HttpServer.cs │ │ ├── IWebSocketSession.cs │ │ ├── ServerState.cs │ │ ├── WebSocketBehavior.cs │ │ ├── WebSocketServer.cs │ │ ├── WebSocketServiceHost.cs │ │ ├── WebSocketServiceHostBase.cs │ │ ├── WebSocketServiceHost`1.cs │ │ ├── WebSocketServiceManager.cs │ │ └── WebSocketSessionManager.cs │ │ ├── WebSocket.cs │ │ ├── WebSocketCore.csproj │ │ ├── WebSocketException.cs │ │ ├── WebSocketFrame.cs │ │ └── WebSocketState.cs ├── docker-compose.ci.build.yml ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml └── packages │ └── SharedSolutionFiles │ └── SharedAssemblyInfo.cs └── 捐赠.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/README.EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /Statement-of-Income-and-Expense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/Statement-of-Income-and-Expense.md -------------------------------------------------------------------------------- /bash.exe.stackdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/bash.exe.stackdump -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SurgingFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/SurgingFunction.png -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/docs.cn/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/docs.cn/INDEX.md -------------------------------------------------------------------------------- /docs/docs.en/Cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/docs.en/Cache.md -------------------------------------------------------------------------------- /docs/docs.en/CacheInterception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/docs.en/CacheInterception.md -------------------------------------------------------------------------------- /docs/docs.en/ConfigMicroservices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/docs.en/ConfigMicroservices.md -------------------------------------------------------------------------------- /docs/docs.en/DependencyInjection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/docs.en/DependencyInjection.md -------------------------------------------------------------------------------- /docs/docs.en/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/docs/docs.en/INDEX.md -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/logo.jpg -------------------------------------------------------------------------------- /sh.exe.stackdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/sh.exe.stackdump -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/.dockerignore -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/.vscode/tasks.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/assets/lib" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Configs/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Configs/appsettings.Development.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Configs/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Configs/appsettings.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Configs/cacheSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Configs/cacheSettings.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Configs/gatewaySettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Configs/gatewaySettings.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Controllers/AuthenticationManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Controllers/AuthenticationManageController.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Controllers/ServiceManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Controllers/ServiceManageController.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Controllers/ServicesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Controllers/ServicesController.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/CustomExceptionFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/CustomExceptionFilterAttribute.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Models/CacheEndpointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Models/CacheEndpointParam.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Program.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/ServiceExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/ServiceExceptionFilter.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Startup.cs -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Surging.ApiGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Surging.ApiGateway.csproj -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/AuthenticationManage/EditServiceToken.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/AuthenticationManage/EditServiceToken.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/AuthenticationManage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/AuthenticationManage/Index.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/EditCacheEndPoint.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/EditCacheEndPoint.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/EditFaultTolerant.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/EditFaultTolerant.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/FaultTolerant.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/FaultTolerant.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/Index.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/ServiceCache.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/ServiceCache.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/ServiceCacheEndpoint.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/ServiceCacheEndpoint.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/ServiceDescriptor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/ServiceDescriptor.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/ServiceManage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/ServiceManage.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/ServiceSubscriber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/ServiceSubscriber.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/ServiceManage/_ServiceManageLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/ServiceManage/_ServiceManageLayout.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/Shared/Partial/ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/Shared/Partial/ManageNav.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/Shared/_AppLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/Shared/_AppLayout.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/Shared/_ManagerLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/Shared/_ManagerLayout.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Surging.ApiGateway/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/bundleconfig.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/apps/authmanage/assets/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/apps/authmanage/assets/css/index.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/apps/authmanage/assets/js/url.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/apps/authmanage/assets/js/url.config.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/apps/servicemange/assets/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/apps/servicemange/assets/css/index.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/apps/servicemange/assets/js/url.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/apps/servicemange/assets/js/url.config.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace-ie.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace-ie.min.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace-rtl.min.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace-skins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace-skins.min.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/base/ace/ace.min.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/base/ace/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/base/ace/font-awesome.min.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/base/app_publiccss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/base/app_publiccss.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/base/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/base/global.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.eot -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.svg -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.ttf -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/fonts/surgingfonticon.woff -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/manager/img/app_icon_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/manager/img/app_icon_all.png -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/manager/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/manager/index.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/manager/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/manager/public.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/manager/themes/default/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/manager/themes/default/skin.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/css/site.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/images/Heading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/images/Heading.jpg -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/base/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/base/bootstrap.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/base/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/base/bootstrap.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/base/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/base/extensions.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/base/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/base/jquery.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/base/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/base/jquery.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/base/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/base/jquery.min.map -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/base/seajs-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/base/seajs-text.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/config.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/ie/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/ie/html5shiv.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/ie/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/ie/respond.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/modules/dt.pjax.event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/modules/dt.pjax.event.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/plugins/ace-elements.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/plugins/ace-elements.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/plugins/ace-extra.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/plugins/ace-extra.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/plugins/ace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/plugins/ace.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/plugins/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/plugins/bootbox.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/plugins/jquery.pjax_n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/plugins/jquery.pjax_n.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/plugins/jquery.tmpl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/plugins/jquery.tmpl.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/seajs/sea-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/seajs/sea-debug.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/seajs/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/seajs/sea.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/seajs/sea.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/seajs/sea.js.map -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/seajs/seajs-text-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/seajs/seajs-text-debug.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/seajs/seajs-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/seajs/seajs-text.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/url.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/js/view/main.guide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/js/view/main.guide.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/README.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/grunt/configBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/grunt/configBridge.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/affix.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/alert.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/button.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/modal.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/popover.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/tab.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/js/transition.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/badges.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/close.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/code.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/forms.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/grid.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/labels.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/media.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/modals.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/navs.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/pager.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/panels.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/print.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/tables.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/theme.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/type.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/variables.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/less/wells.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/package.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/bootstrap/package.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/.bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/.gitignore -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/.npmignore -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/animated.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/core.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/icons.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/larger.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/list.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/path.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/less/variables.less -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/Gruntfile.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/src/ajax.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery-validation/src/core.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/README.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/.jshintrc -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/effects/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/effects/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/intro.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/.bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/LICENSE.md -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/bower.json -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/runtime-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/runtime-debug.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/runtime.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/sea-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/sea-debug.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/sea.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/standalone-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/standalone-debug.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/assets/lib/seajs/dist/standalone.js -------------------------------------------------------------------------------- /src/Surging.ApiGateway/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.ApiGateway/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/Aggregation/ServicePartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/Aggregation/ServicePartType.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/AppConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/Configurations/AccessPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/Configurations/AccessPolicy.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/Configurations/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/Configurations/Register.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/Configurations/ServicePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/Configurations/ServicePart.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/Configurations/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/Configurations/Services.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/IServicePartProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/IServicePartProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/ServiceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/ServiceResult.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/ServiceStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/ServiceStatusCode.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/Surging.Core.ApiGateWay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/Surging.Core.ApiGateWay.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ApiGateWay/Utilities/ServiceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ApiGateWay/Utilities/ServiceResult.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Address/AddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Address/AddressModel.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Address/IpAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Address/IpAddressModel.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/AppConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/CPlatformContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/CPlatformContainer.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/CPlatformResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/CPlatformResource.Designer.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/CPlatformResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/CPlatformResource.resx -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/CacheDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/CacheDescriptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/CacheEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/CacheEndpoint.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/ICacheNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/ICacheNodeProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/ICacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/ICacheProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/IServiceCacheFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/IServiceCacheFactory.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/IServiceCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/IServiceCacheManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/ServiceCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/ServiceCache.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Cache/ServiceCacheDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Cache/ServiceCacheDescriptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/CommunicationProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/CommunicationProtocol.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Configurations/ModulePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Configurations/ModulePackage.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Engines/IServiceEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Engines/IServiceEngine.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Engines/IServiceEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Engines/IServiceEngineBuilder.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Engines/IServiceEngineLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Engines/IServiceEngineLifetime.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/EventBus/Events/EventContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/EventBus/Events/EventContext.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/EventBus/ISubscriptionAdapt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/EventBus/ISubscriptionAdapt.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Exceptions/CPlatformException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Exceptions/CPlatformException.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Filters/IAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Filters/IAuthorizationFilter.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Filters/IExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Filters/IExceptionFilter.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Filters/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Filters/IFilter.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/HashAlgorithms/ConsistentHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/HashAlgorithms/ConsistentHash.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/HashAlgorithms/HashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/HashAlgorithms/HashAlgorithm.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/HashAlgorithms/IHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/HashAlgorithms/IHashAlgorithm.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/IdentifyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/IdentifyAttribute.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Ids/IServiceIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Ids/IServiceIdGenerator.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Ioc/BaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Ioc/BaseRepository.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Ioc/IServiceBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Ioc/IServiceBehavior.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Ioc/IServiceKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Ioc/IServiceKey.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Ioc/ModuleNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Ioc/ModuleNameAttribute.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Ioc/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Ioc/ServiceBase.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Logging/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Logging/NullLogger.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Messages/HttpMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Messages/HttpMessage.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Messages/HttpResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Messages/HttpResultMessage.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Messages/RemoteInvokeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Messages/RemoteInvokeMessage.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Messages/TransportMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Messages/TransportMessage.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/AbstractModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/AbstractModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/AssemblyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/AssemblyEntry.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/BusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/BusinessModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/Component.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/ContainerBuilderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/ContainerBuilderWrapper.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/EchoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/EchoService.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/EnginePartModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/EnginePartModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/IEchoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/IEchoService.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/IModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/IModuleManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/IModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/IModuleProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/ModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/ModuleProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/ModuleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/ModuleState.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Module/SystemModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Module/SystemModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Mqtt/IMqttServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Mqtt/IMqttServiceFactory.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Mqtt/IMqttServiceRouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Mqtt/IMqttServiceRouteManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Mqtt/MqttDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Mqtt/MqttDescriptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Mqtt/MqttServiceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Mqtt/MqttServiceDescriptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Mqtt/MqttServiceRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Mqtt/MqttServiceRoute.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/RequetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/RequetData.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Routing/IServiceRouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Routing/IServiceRouteFactory.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Routing/IServiceRouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Routing/IServiceRouteManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Routing/IServiceRouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Routing/IServiceRouteProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRoute.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRouteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRouteContext.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRouteDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRouteDescriptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRouteWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Routing/ServiceRouteWatch.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Runtime/Server/IServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Runtime/Server/IServiceHost.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Runtime/Server/ServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Runtime/Server/ServiceEntry.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Serialization/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Serialization/ISerializer.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/ServiceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/ServiceDescriptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/ServiceHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/ServiceHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Support/IClusterInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Support/IClusterInvoker.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Support/IFallbackInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Support/IFallbackInvoker.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Support/IServiceCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Support/IServiceCommandManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Support/ServiceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Support/ServiceCommand.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Support/StrategyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Support/StrategyType.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Surging.Core.CPlatform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Surging.Core.CPlatform.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Transport/IMessageListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Transport/IMessageListener.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Transport/IMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Transport/IMessageSender.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Transport/ITransportClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Transport/ITransportClient.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/Check.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/DebugCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/DebugCheck.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/EnvironmentHelper.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/FastInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/FastInvoke.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/NetUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/NetUtils.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/ServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/ServiceLocator.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/TaskHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/TaskHelpers.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.CPlatform/Utilities/UtilityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.CPlatform/Utilities/UtilityType.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/AppConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/CacheContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/CacheContainer.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/CacheTargetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/CacheTargetType.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/CachingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/CachingModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/CachingResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/CachingResources.Designer.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/CachingResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/CachingResources.resx -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/HashAlgorithms/ConsistentHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/HashAlgorithms/ConsistentHash.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/HashAlgorithms/HashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/HashAlgorithms/HashAlgorithm.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/HashAlgorithms/IHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/HashAlgorithms/IHashAlgorithm.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/HealthChecks/IHealthCheckService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/HealthChecks/IHealthCheckService.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/IdentifyCacheAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/IdentifyCacheAttribute.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Interfaces/ICacheClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Interfaces/ICacheClient.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Models/CachingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Models/CachingProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Models/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Models/Map.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Models/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Models/Property.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Models/binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Models/binding.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/NetCache/GCThreadProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/NetCache/GCThreadProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/NetCache/MemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/NetCache/MemoryCache.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/NetCache/MemoryCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/NetCache/MemoryCacheProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/ObjectPool.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/RedisCache/RedisCacheClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/RedisCache/RedisCacheClient.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/RedisCache/RedisContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/RedisCache/RedisContext.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/RedisCache/RedisEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/RedisCache/RedisEndpoint.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/RedisCache/RedisProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/RedisCache/RedisProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/ServiceHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/ServiceHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Surging.Core.Caching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Surging.Core.Caching.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Utilities/CacheException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Utilities/CacheException.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Utilities/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Utilities/Check.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Caching/Utilities/DebugCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Caching/Utilities/DebugCheck.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Codec.MessagePack/MessagePackModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Codec.MessagePack/MessagePackModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Codec.MessagePack/Messages/DynamicItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Codec.MessagePack/Messages/DynamicItem.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Codec.ProtoBuffer/Messages/DynamicItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Codec.ProtoBuffer/Messages/DynamicItem.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Codec.ProtoBuffer/ProtoBufferModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Codec.ProtoBuffer/ProtoBufferModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Common/ApiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Common/ApiResult.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Common/CommonModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Common/CommonModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Common/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Common/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Common/Surging.Core.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Common/Surging.Core.Common.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/AppConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/Configurations/ConfigInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/Configurations/ConfigInfo.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/Configurations/ConsulOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/Configurations/ConsulOption.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/ConsulModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/ConsulModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/ConsulMqttServiceRouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/ConsulMqttServiceRouteManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/ConsulServiceCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/ConsulServiceCacheManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/ConsulServiceCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/ConsulServiceCommandManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/ConsulServiceRouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/ConsulServiceRouteManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/ConsulServiceSubscribeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/ConsulServiceSubscribeManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/Internal/IConsulClientProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/Internal/IConsulClientProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/Package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/Package.nuspec -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/Surging.Core.Consul.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/Surging.Core.Consul.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Consul/Utilitys/ConsulClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Consul/Utilitys/ConsulClientExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.DotNetty/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.DotNetty/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.DotNetty/DotNettyMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.DotNetty/DotNettyMessageSender.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.DotNetty/DotNettyModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.DotNetty/DotNettyModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.DotNetty/DotNettyServerMessageListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.DotNetty/DotNettyServerMessageListener.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.DotNetty/DotNettyTransportClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.DotNetty/DotNettyTransportClientFactory.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.DotNetty/Surging.Core.DotNetty.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.DotNetty/Surging.Core.DotNetty.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusKafka/Appconfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusKafka/Appconfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusKafka/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusKafka/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusKafka/EventBusKafkaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusKafka/EventBusKafkaModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusKafka/IConsumeConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusKafka/IConsumeConfigurator.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusKafka/IKafkaPersisterConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusKafka/IKafkaPersisterConnection.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusKafka/Utilities/FastInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusKafka/Utilities/FastInvoker.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusRabbitMQ/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusRabbitMQ/AppConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusRabbitMQ/EventBusRabbitMQModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusRabbitMQ/EventBusRabbitMQModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusRabbitMQ/IConsumeConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusRabbitMQ/IConsumeConfigurator.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusRabbitMQ/QueueConsumerMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusRabbitMQ/QueueConsumerMode.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusRabbitMQ/RabbitmqLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusRabbitMQ/RabbitmqLifetime.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.EventBusRabbitMQ/Utilities/FastInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.EventBusRabbitMQ/Utilities/FastInvoker.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/AppConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/DefaultHttpServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/DefaultHttpServiceHost.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/HttpExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/HttpExecutor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/HttpMessageListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/HttpMessageListener.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/HttpServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/HttpServiceHost.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/Internal/HttpFormFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/Internal/HttpFormFile.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/KestrelHttpModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/KestrelHttpModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.KestrelHttpServer/StatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.KestrelHttpServer/StatusCode.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Log4net/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Log4net/Log4NetLogger.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Log4net/Log4NetProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Log4net/Log4NetProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Log4net/Log4netModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Log4net/Log4netModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Log4net/ServiceHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Log4net/ServiceHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Log4net/Surging.Core.Log4net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Log4net/Surging.Core.Log4net.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.NLog/NLogModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.NLog/NLogModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.NLog/NLogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.NLog/NLogProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.NLog/NLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.NLog/NLogger.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.NLog/ServiceHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.NLog/ServiceHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.NLog/Surging.Core.Nlog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.NLog/Surging.Core.Nlog.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Http/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Http/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Http/HttpProtocolModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Http/HttpProtocolModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Http/HttpServiceExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Http/HttpServiceExecutor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Http/HttpServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Http/HttpServiceHost.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Http/StatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Http/StatusCode.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Mqtt/Internal/Enums/Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Mqtt/Internal/Enums/Behavior.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Mqtt/Internal/Enums/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Mqtt/Internal/Enums/MessageType.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Mqtt/Internal/Runtime/Runnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Mqtt/Internal/Runtime/Runnable.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Mqtt/MqttHandlerServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Mqtt/MqttHandlerServiceBase.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Mqtt/MqttProtocolModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Mqtt/MqttProtocolModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Mqtt/MqttServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Mqtt/MqttServiceHost.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.Mqtt/Util/MessageIdGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.Mqtt/Util/MessageIdGenerater.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.WS/Runtime/WSServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.WS/Runtime/WSServiceEntry.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.WS/Surging.Core.Protocol.WS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.WS/Surging.Core.Protocol.WS.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.WS/WSProtocolModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.WS/WSProtocolModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.WS/WSServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.WS/WSServiceBase.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Protocol.WS/WSServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Protocol.WS/WSServiceHost.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/IServiceProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/IServiceProxyFactory.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/IServiceProxyGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/IServiceProxyGenerater.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/IServiceProxyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/IServiceProxyProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/Interceptors/IInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/Interceptors/IInterceptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/Interceptors/IInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/Interceptors/IInvocation.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/ProxyServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/ProxyServiceBase.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/ServiceProxyModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/ServiceProxyModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ProxyGenerator/Utilitys/AttributeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ProxyGenerator/Utilitys/AttributeFactory.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Redis/Configurations/ConfigInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Redis/Configurations/ConfigInfo.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Redis/Provider/ICacheClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Redis/Provider/ICacheClient.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Redis/Surging.Core.Redis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Redis/Surging.Core.Redis.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ServiceHosting/Internal/IHostLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ServiceHosting/Internal/IHostLifetime.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ServiceHosting/Internal/IServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ServiceHosting/Internal/IServiceHost.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.ServiceHosting/Startup/IStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.ServiceHosting/Startup/IStartup.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/Surging.Core.Swagger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/Surging.Core.Swagger.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/Swagger/Model/ApiKeyScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/Swagger/Model/ApiKeyScheme.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/Swagger/Model/BasicAuthScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/Swagger/Model/BasicAuthScheme.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/Swagger/Model/ISwaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/Swagger/Model/ISwaggerProvider.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/Swagger/Model/OAuth2Scheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/Swagger/Model/OAuth2Scheme.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/Swagger/Model/SecurityScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/Swagger/Model/SecurityScheme.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/Swagger/Model/SwaggerDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/Swagger/Model/SwaggerDocument.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/SwaggerUI/SwaggerUIMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/SwaggerUI/SwaggerUIMiddleware.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/SwaggerUI/SwaggerUIOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/SwaggerUI/SwaggerUIOptions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Swagger/SwaggerUI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Swagger/SwaggerUI/index.html -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Intercept/CacheKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Intercept/CacheKeyAttribute.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Intercept/CacheProviderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Intercept/CacheProviderExtension.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Intercept/CachingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Intercept/CachingMethod.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Intercept/LogProviderInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Intercept/LogProviderInterceptor.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Intercept/SectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Intercept/SectionType.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Ioc/ModuleNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Ioc/ModuleNameAttribute.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Ioc/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Ioc/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Module/AbstractModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Module/AbstractModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Module/BusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Module/BusinessModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Module/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Module/Component.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Module/ContainerBuilderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Module/ContainerBuilderWrapper.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Module/ModuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Module/ModuleType.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Module/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Module/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Module/SystemModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Module/SystemModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/MongoProvider/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/MongoProvider/Entity.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/MongoProvider/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/MongoProvider/IEntity.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/MongoProvider/MongoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/MongoProvider/MongoConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/MongoProvider/MongoModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/MongoProvider/MongoModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/MongoProvider/QueryParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/MongoProvider/QueryParams.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/MongoProvider/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/MongoProvider/Util.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/ServiceBase.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.System/Surging.Core.System.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.System/Surging.Core.System.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/AppConfig.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/Configurations/ConfigInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/Configurations/ConfigInfo.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/Configurations/ZookeeperOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/Configurations/ZookeeperOption.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/Surging.Core.Zookeeper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/Surging.Core.Zookeeper.csproj -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/WatcherProvider/WatcherBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/WatcherProvider/WatcherBase.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/ZooKeeperServiceRouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/ZooKeeperServiceRouteManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/ZookeeperModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/ZookeeperModule.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/ZookeeperServiceCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/ZookeeperServiceCacheManager.cs -------------------------------------------------------------------------------- /src/Surging.Core/Surging.Core.Zookeeper/ZookeeperServiceCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Core/Surging.Core.Zookeeper/ZookeeperServiceCommandManager.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Domain/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Domain/ChatService.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Domain/ControllerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Domain/ControllerService.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Domain/PersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Domain/PersonService.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Domain/RoteMangeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Domain/RoteMangeService.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Domain/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Domain/UserService.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Common/Surging.Modules.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Common/Surging.Modules.Common.csproj -------------------------------------------------------------------------------- /src/Surging.Modules/Surging.Modules.Manager/Domain/ManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Modules/Surging.Modules.Manager/Domain/ManagerService.cs -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Client/Program.cs -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Client/Startup.cs -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Client/cacheSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Client/cacheSettings.json -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Client/eventBusSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "EventBusConnection": "localhost" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Client/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Client/log4net.config -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Client/nLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Client/nLog.config -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Client/surgingSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Client/surgingSettings.json -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/Configs/Zookeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/Configs/Zookeeper.json -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/Configs/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/Configs/consul.json -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/NLog.config -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/Program.cs -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/Startup.cs -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/SurgingServiceEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/SurgingServiceEngine.cs -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/cacheSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/cacheSettings.json -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/eventBusSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/eventBusSettings.json -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/log4net.config -------------------------------------------------------------------------------- /src/Surging.Services/Surging.Services.Server/surgingSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Services/Surging.Services.Server/surgingSettings.json -------------------------------------------------------------------------------- /src/Surging.Web/Surging.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Web/Surging.Web.csproj -------------------------------------------------------------------------------- /src/Surging.Web/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Web/default.htm -------------------------------------------------------------------------------- /src/Surging.Web/f5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.Web/f5.htm -------------------------------------------------------------------------------- /src/Surging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/Surging.sln -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/ByteOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/ByteOrder.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/CloseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/CloseEventArgs.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/CloseStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/CloseStatusCode.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/CompressionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/CompressionMethod.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/ErrorEventArgs.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Ext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Ext.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Fin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Fin.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/HttpBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/HttpBase.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/HttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/HttpRequest.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/HttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/HttpResponse.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/LogData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/LogData.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/LogLevel.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Logger.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Mask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Mask.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/MessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/MessageEventArgs.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/AuthenticationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/AuthenticationBase.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/AuthenticationChallenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/AuthenticationChallenge.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/AuthenticationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/AuthenticationResponse.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/AuthenticationSchemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/AuthenticationSchemes.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/Chunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/Chunk.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/ChunkStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/ChunkStream.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/ChunkedRequestStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/ChunkedRequestStream.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/ClientSslConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/ClientSslConfiguration.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/Cookie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/Cookie.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/CookieCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/CookieCollection.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/CookieException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/CookieException.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/EndPointListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/EndPointListener.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/EndPointManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/EndPointManager.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpBasicIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpBasicIdentity.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpConnection.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpDigestIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpDigestIdentity.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpHeaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpHeaderInfo.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpHeaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpHeaderType.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListener.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListenerAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListenerAsyncResult.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListenerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListenerContext.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListenerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListenerException.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListenerPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListenerPrefix.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListenerPrefixCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListenerPrefixCollection.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListenerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListenerRequest.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpListenerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpListenerResponse.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpRequestHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpRequestHeader.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpResponseHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpResponseHeader.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpStatusCode.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpStreamAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpStreamAsyncResult.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpUtility.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/HttpVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/HttpVersion.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/InputChunkState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/InputChunkState.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/InputState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/InputState.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/LineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/LineState.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/NetworkCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/NetworkCredential.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/QueryStringCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/QueryStringCollection.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/ReadBufferState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/ReadBufferState.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/RequestStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/RequestStream.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/ResponseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/ResponseStream.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/ServerSslConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/ServerSslConfiguration.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/WebHeaderCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/WebHeaderCollection.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/WebSockets/TcpListenerWebSocketContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/WebSockets/TcpListenerWebSocketContext.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Net/WebSockets/WebSocketContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Net/WebSockets/WebSocketContext.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Opcode.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/PayloadData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/PayloadData.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Program.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Rsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Rsv.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/HttpRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/HttpRequestEventArgs.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/HttpServer.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/IWebSocketSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/IWebSocketSession.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/ServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/ServerState.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/WebSocketBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/WebSocketBehavior.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/WebSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/WebSocketServer.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/WebSocketServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/WebSocketServiceHost.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/WebSocketServiceHostBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/WebSocketServiceHostBase.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/WebSocketServiceHost`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/WebSocketServiceHost`1.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/WebSocketServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/WebSocketServiceManager.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/Server/WebSocketSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/Server/WebSocketSessionManager.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/WebSocket.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/WebSocketCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/WebSocketCore.csproj -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/WebSocketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/WebSocketException.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/WebSocketFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/WebSocketFrame.cs -------------------------------------------------------------------------------- /src/WebSocket/WebSocketCore/WebSocketState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/WebSocket/WebSocketCore/WebSocketState.cs -------------------------------------------------------------------------------- /src/docker-compose.ci.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/docker-compose.ci.build.yml -------------------------------------------------------------------------------- /src/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/docker-compose.dcproj -------------------------------------------------------------------------------- /src/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/docker-compose.override.yml -------------------------------------------------------------------------------- /src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/docker-compose.yml -------------------------------------------------------------------------------- /src/packages/SharedSolutionFiles/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/src/packages/SharedSolutionFiles/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /捐赠.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YSGStudyHards/surging/HEAD/捐赠.png --------------------------------------------------------------------------------