├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Controllers └── HomeController.cs ├── Models └── ErrorViewModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Startup.cs ├── Views ├── Home │ ├── About.cshtml │ ├── Contact.cshtml │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp2.0 │ ├── dotpwa.deps.json │ ├── dotpwa.dll │ ├── dotpwa.pdb │ ├── dotpwa.runtimeconfig.dev.json │ └── dotpwa.runtimeconfig.json ├── bundleconfig.json ├── dotpwa.csproj ├── dotpwa.csproj.user ├── dotpwa.sln ├── obj ├── Debug │ └── netcoreapp2.0 │ │ ├── dotpwa.AssemblyInfo.cs │ │ ├── dotpwa.AssemblyInfoInputs.cache │ │ ├── dotpwa.csproj.CoreCompileInputs.cache │ │ ├── dotpwa.csproj.FileListAbsolute.txt │ │ ├── dotpwa.csprojResolveAssemblyReference.cache │ │ ├── dotpwa.dll │ │ └── dotpwa.pdb ├── dotpwa.csproj.nuget.cache ├── dotpwa.csproj.nuget.g.props ├── dotpwa.csproj.nuget.g.targets └── project.assets.json └── wwwroot ├── css ├── site.css └── site.min.css ├── favicon.ico ├── images ├── banner1.svg ├── banner2.svg ├── banner3.svg ├── banner4.svg ├── icon192x192.png └── icon512x512.png ├── js ├── site.js └── site.min.js ├── lib ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── 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 ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/README.md -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Startup.cs -------------------------------------------------------------------------------- /Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/appsettings.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.0/dotpwa.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/bin/Debug/netcoreapp2.0/dotpwa.deps.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.0/dotpwa.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/bin/Debug/netcoreapp2.0/dotpwa.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.0/dotpwa.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/bin/Debug/netcoreapp2.0/dotpwa.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.0/dotpwa.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/bin/Debug/netcoreapp2.0/dotpwa.runtimeconfig.dev.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.0/dotpwa.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/bin/Debug/netcoreapp2.0/dotpwa.runtimeconfig.json -------------------------------------------------------------------------------- /bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/bundleconfig.json -------------------------------------------------------------------------------- /dotpwa.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/dotpwa.csproj -------------------------------------------------------------------------------- /dotpwa.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/dotpwa.csproj.user -------------------------------------------------------------------------------- /dotpwa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/dotpwa.sln -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.0/dotpwa.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/Debug/netcoreapp2.0/dotpwa.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.0/dotpwa.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cc4b6e7768a1a00b2ef3864898908f64b3cb16c 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.0/dotpwa.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6a760809d9fb76c44c2ccc9c33f5ae7b5bd17a41 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.0/dotpwa.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/Debug/netcoreapp2.0/dotpwa.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.0/dotpwa.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/Debug/netcoreapp2.0/dotpwa.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.0/dotpwa.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/Debug/netcoreapp2.0/dotpwa.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.0/dotpwa.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/Debug/netcoreapp2.0/dotpwa.pdb -------------------------------------------------------------------------------- /obj/dotpwa.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/dotpwa.csproj.nuget.cache -------------------------------------------------------------------------------- /obj/dotpwa.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/dotpwa.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/dotpwa.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/dotpwa.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/css/site.css -------------------------------------------------------------------------------- /wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /wwwroot/images/icon192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/images/icon192x192.png -------------------------------------------------------------------------------- /wwwroot/images/icon512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/images/icon512x512.png -------------------------------------------------------------------------------- /wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /wwwroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHWINI-GUPTA/ASP.NET-Core-PWA/HEAD/wwwroot/manifest.json --------------------------------------------------------------------------------