├── Angular5
├── src
│ ├── assets
│ │ ├── .gitkeep
│ │ └── img
│ │ │ ├── logo.png
│ │ │ └── trophy.png
│ ├── app
│ │ ├── app.component.css
│ │ ├── quiz
│ │ │ ├── quiz.component.css
│ │ │ ├── quiz.component.spec.ts
│ │ │ ├── quiz.component.html
│ │ │ └── quiz.component.ts
│ │ ├── navbar
│ │ │ ├── navbar.component.css
│ │ │ ├── navbar.component.html
│ │ │ ├── navbar.component.ts
│ │ │ └── navbar.component.spec.ts
│ │ ├── register
│ │ │ ├── register.component.css
│ │ │ ├── register.component.spec.ts
│ │ │ ├── register.component.ts
│ │ │ └── register.component.html
│ │ ├── result
│ │ │ ├── result.component.css
│ │ │ ├── result.component.spec.ts
│ │ │ ├── result.component.ts
│ │ │ └── result.component.html
│ │ ├── app.component.html
│ │ ├── app.component.ts
│ │ ├── auth
│ │ │ ├── auth.guard.spec.ts
│ │ │ └── auth.guard.ts
│ │ ├── shared
│ │ │ ├── quiz.service.spec.ts
│ │ │ └── quiz.service.ts
│ │ ├── routes.ts
│ │ ├── app.component.spec.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── typings.d.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── main.ts
│ ├── styles.css
│ ├── test.ts
│ ├── index.html
│ └── polyfills.ts
├── e2e
│ ├── app.po.ts
│ ├── tsconfig.e2e.json
│ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.json
├── .gitignore
├── protractor.conf.js
├── karma.conf.js
├── README.md
├── package.json
├── .angular-cli.json
└── tslint.json
├── WebAPI
├── WebAPI
│ ├── obj
│ │ └── Debug
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── WebAPI.dll
│ │ │ ├── WebAPI.pdb
│ │ │ ├── TempPE
│ │ │ ├── Models.DBModels.cs.dll
│ │ │ └── Models.DBModels.Designer.cs.dll
│ │ │ ├── WebAPI.csprojResolveAssemblyReference.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── edmxResourcesToEmbed
│ │ │ └── Models
│ │ │ ├── DBModels.msl
│ │ │ ├── DBModels.ssdl
│ │ │ └── DBModels.csdl
│ ├── Views
│ │ ├── _ViewStart.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ └── _Layout.cshtml
│ │ ├── Home
│ │ │ └── Index.cshtml
│ │ └── Web.config
│ ├── Global.asax
│ ├── favicon.ico
│ ├── Images
│ │ ├── q16.jpg
│ │ └── q17.png
│ ├── bin
│ │ ├── WebAPI.dll
│ │ ├── WebAPI.pdb
│ │ ├── WebGrease.dll
│ │ ├── Antlr3.Runtime.dll
│ │ ├── Antlr3.Runtime.pdb
│ │ ├── EntityFramework.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── System.Web.Cors.dll
│ │ ├── System.Web.Http.dll
│ │ ├── System.Web.Mvc.dll
│ │ ├── System.Web.Razor.dll
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Http.Cors.dll
│ │ ├── System.Web.WebPages.dll
│ │ ├── System.Web.Http.WebHost.dll
│ │ ├── System.Web.Optimization.dll
│ │ ├── System.Net.Http.Formatting.dll
│ │ ├── System.Web.WebPages.Razor.dll
│ │ ├── Microsoft.Web.Infrastructure.dll
│ │ ├── System.Web.WebPages.Deployment.dll
│ │ └── WebAPI.dll.config
│ ├── Scripts
│ │ └── _references.js
│ ├── Areas
│ │ └── HelpPage
│ │ │ ├── Views
│ │ │ ├── Help
│ │ │ │ ├── DisplayTemplates
│ │ │ │ │ ├── ImageSample.cshtml
│ │ │ │ │ ├── TextSample.cshtml
│ │ │ │ │ ├── InvalidSample.cshtml
│ │ │ │ │ ├── Samples.cshtml
│ │ │ │ │ ├── ApiGroup.cshtml
│ │ │ │ │ ├── HelpPageApiModel.cshtml
│ │ │ │ │ └── Parameters.cshtml
│ │ │ │ ├── Api.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ ├── Shared
│ │ │ │ └── _Layout.cshtml
│ │ │ └── Web.config
│ │ │ ├── SampleGeneration
│ │ │ ├── SampleDirection.cs
│ │ │ ├── TextSample.cs
│ │ │ ├── InvalidSample.cs
│ │ │ └── ImageSample.cs
│ │ │ ├── HelpPageAreaRegistration.cs
│ │ │ ├── Controllers
│ │ │ └── HelpController.cs
│ │ │ ├── ApiDescriptionExtensions.cs
│ │ │ ├── Models
│ │ │ └── HelpPageApiModel.cs
│ │ │ ├── HelpPage.css
│ │ │ └── App_Start
│ │ │ └── HelpPageConfig.cs
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── App_Start
│ │ ├── FilterConfig.cs
│ │ ├── RouteConfig.cs
│ │ ├── WebApiConfig.cs
│ │ └── BundleConfig.cs
│ ├── Controllers
│ │ ├── HomeController.cs
│ │ ├── ValuesController.cs
│ │ ├── ParticipantController.cs
│ │ └── QuizController.cs
│ ├── Models
│ │ ├── DBModels.cs
│ │ ├── DBModels.edmx.diagram
│ │ ├── DBModels.Designer.cs
│ │ ├── Participant.cs
│ │ ├── Question.cs
│ │ └── DBModels.Context.cs
│ ├── Content
│ │ └── Site.css
│ ├── Global.asax.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── WebAPI.csproj.user
│ ├── packages.config
│ └── Web.config
├── WebAPI.v12.suo
├── packages
│ ├── repositories.config
│ ├── WebGrease.1.5.2
│ │ ├── tools
│ │ │ └── WG.exe
│ │ ├── lib
│ │ │ └── WebGrease.dll
│ │ ├── WebGrease.1.5.2.nupkg
│ │ └── WebGrease.1.5.2.nuspec
│ ├── Respond.1.2.0
│ │ ├── Respond.1.2.0.nupkg
│ │ └── Respond.1.2.0.nuspec
│ ├── jQuery.1.10.2
│ │ ├── jQuery.1.10.2.nupkg
│ │ ├── jQuery.1.10.2.nuspec
│ │ └── Tools
│ │ │ ├── install.ps1
│ │ │ └── uninstall.ps1
│ ├── Modernizr.2.6.2
│ │ ├── Modernizr.2.6.2.nupkg
│ │ ├── Tools
│ │ │ ├── uninstall.ps1
│ │ │ ├── install.ps1
│ │ │ └── common.ps1
│ │ └── Modernizr.2.6.2.nuspec
│ ├── bootstrap.3.0.0
│ │ ├── bootstrap.3.0.0.nupkg
│ │ ├── content
│ │ │ └── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ └── glyphicons-halflings-regular.woff
│ │ └── bootstrap.3.0.0.nuspec
│ ├── Antlr.3.4.1.9004
│ │ ├── Antlr.3.4.1.9004.nupkg
│ │ ├── lib
│ │ │ ├── Antlr3.Runtime.dll
│ │ │ └── Antlr3.Runtime.pdb
│ │ └── Antlr.3.4.1.9004.nuspec
│ ├── EntityFramework.5.0.0
│ │ ├── tools
│ │ │ ├── migrate.exe
│ │ │ ├── EntityFramework.psd1
│ │ │ ├── EntityFramework.PS3.psd1
│ │ │ ├── EntityFramework.PowerShell.dll
│ │ │ ├── EntityFramework.PowerShell.Utility.dll
│ │ │ ├── Redirect.config
│ │ │ ├── Redirect.VS11.config
│ │ │ └── about_EntityFramework.help.txt
│ │ ├── EntityFramework.5.0.0.nupkg
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ └── EntityFramework.dll
│ │ │ └── net45
│ │ │ │ └── EntityFramework.dll
│ │ ├── Content
│ │ │ ├── App.config.transform
│ │ │ └── Web.config.transform
│ │ └── EntityFramework.5.0.0.nuspec
│ ├── Newtonsoft.Json.6.0.8
│ │ ├── Newtonsoft.Json.6.0.8.nupkg
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ └── Newtonsoft.Json.dll
│ │ │ ├── net35
│ │ │ │ └── Newtonsoft.Json.dll
│ │ │ ├── net40
│ │ │ │ └── Newtonsoft.Json.dll
│ │ │ ├── net45
│ │ │ │ └── Newtonsoft.Json.dll
│ │ │ ├── netcore45
│ │ │ │ └── Newtonsoft.Json.dll
│ │ │ ├── portable-net40+sl5+wp80+win8+wpa81
│ │ │ │ └── Newtonsoft.Json.dll
│ │ │ └── portable-net45+wp80+win8+wpa81+aspnetcore50
│ │ │ │ └── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.6.0.8.nuspec
│ ├── Microsoft.AspNet.WebApi.HelpPage.5.0.0
│ │ ├── content
│ │ │ └── Areas
│ │ │ │ └── HelpPage
│ │ │ │ ├── Views
│ │ │ │ ├── Help
│ │ │ │ │ ├── DisplayTemplates
│ │ │ │ │ │ ├── ImageSample.cshtml.pp
│ │ │ │ │ │ ├── TextSample.cshtml.pp
│ │ │ │ │ │ ├── InvalidSample.cshtml.pp
│ │ │ │ │ │ ├── Samples.cshtml.pp
│ │ │ │ │ │ ├── ApiGroup.cshtml.pp
│ │ │ │ │ │ ├── HelpPageApiModel.cshtml.pp
│ │ │ │ │ │ └── Parameters.cshtml.pp
│ │ │ │ │ ├── Api.cshtml.pp
│ │ │ │ │ └── Index.cshtml.pp
│ │ │ │ ├── _ViewStart.cshtml.pp
│ │ │ │ ├── Shared
│ │ │ │ │ └── _Layout.cshtml.pp
│ │ │ │ └── Web.config
│ │ │ │ ├── SampleGeneration
│ │ │ │ ├── SampleDirection.cs.pp
│ │ │ │ ├── TextSample.cs.pp
│ │ │ │ ├── InvalidSample.cs.pp
│ │ │ │ └── ImageSample.cs.pp
│ │ │ │ ├── HelpPageAreaRegistration.cs.pp
│ │ │ │ ├── Controllers
│ │ │ │ └── HelpController.cs.pp
│ │ │ │ ├── ApiDescriptionExtensions.cs.pp
│ │ │ │ ├── Models
│ │ │ │ └── HelpPageApiModel.cs.pp
│ │ │ │ ├── HelpPage.css.pp
│ │ │ │ └── App_Start
│ │ │ │ └── HelpPageConfig.cs.pp
│ │ ├── Microsoft.AspNet.WebApi.HelpPage.5.0.0.nupkg
│ │ └── Microsoft.AspNet.WebApi.HelpPage.5.0.0.nuspec
│ ├── Microsoft.AspNet.Cors.5.2.4
│ │ ├── lib
│ │ │ └── net45
│ │ │ │ └── System.Web.Cors.dll
│ │ ├── Microsoft.AspNet.Cors.5.2.4.nupkg
│ │ └── Microsoft.AspNet.Cors.5.2.4.nuspec
│ ├── Microsoft.AspNet.Mvc.5.0.0
│ │ ├── lib
│ │ │ └── net45
│ │ │ │ └── System.Web.Mvc.dll
│ │ ├── Microsoft.AspNet.Mvc.5.0.0.nupkg
│ │ └── Microsoft.AspNet.Mvc.5.0.0.nuspec
│ ├── Microsoft.AspNet.Razor.3.0.0
│ │ ├── lib
│ │ │ └── net45
│ │ │ │ └── System.Web.Razor.dll
│ │ ├── Microsoft.AspNet.Razor.3.0.0.nupkg
│ │ └── Microsoft.AspNet.Razor.3.0.0.nuspec
│ ├── Microsoft.AspNet.WebApi.Core.5.2.4
│ │ ├── lib
│ │ │ └── net45
│ │ │ │ └── System.Web.Http.dll
│ │ ├── Microsoft.AspNet.WebApi.Core.5.2.4.nupkg
│ │ ├── Content
│ │ │ └── web.config.transform
│ │ └── Microsoft.AspNet.WebApi.Core.5.2.4.nuspec
│ ├── Microsoft.AspNet.WebPages.3.0.0
│ │ ├── lib
│ │ │ └── net45
│ │ │ │ ├── System.Web.Helpers.dll
│ │ │ │ ├── System.Web.WebPages.dll
│ │ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ │ └── System.Web.WebPages.Deployment.dll
│ │ ├── Microsoft.AspNet.WebPages.3.0.0.nupkg
│ │ └── Microsoft.AspNet.WebPages.3.0.0.nuspec
│ ├── Microsoft.AspNet.WebApi.5.2.4
│ │ ├── Microsoft.AspNet.WebApi.5.2.4.nupkg
│ │ └── Microsoft.AspNet.WebApi.5.2.4.nuspec
│ ├── Microsoft.AspNet.WebApi.Cors.5.2.4
│ │ ├── lib
│ │ │ └── net45
│ │ │ │ └── System.Web.Http.Cors.dll
│ │ ├── Microsoft.AspNet.WebApi.Cors.5.2.4.nupkg
│ │ └── Microsoft.AspNet.WebApi.Cors.5.2.4.nuspec
│ ├── Microsoft.AspNet.Web.Optimization.1.1.1
│ │ ├── lib
│ │ │ └── net40
│ │ │ │ └── System.Web.Optimization.dll
│ │ ├── Microsoft.AspNet.Web.Optimization.1.1.1.nupkg
│ │ └── Microsoft.AspNet.Web.Optimization.1.1.1.nuspec
│ ├── Microsoft.AspNet.WebApi.Client.5.2.4
│ │ ├── lib
│ │ │ ├── net45
│ │ │ │ └── System.Net.Http.Formatting.dll
│ │ │ ├── netstandard2.0
│ │ │ │ └── System.Net.Http.Formatting.dll
│ │ │ └── portable-wp8+netcore45+net45+wp81+wpa81
│ │ │ │ └── System.Net.Http.Formatting.dll
│ │ ├── Microsoft.AspNet.WebApi.Client.5.2.4.nupkg
│ │ └── Microsoft.AspNet.WebApi.Client.5.2.4.nuspec
│ ├── Microsoft.AspNet.WebApi.WebHost.5.2.4
│ │ ├── lib
│ │ │ └── net45
│ │ │ │ └── System.Web.Http.WebHost.dll
│ │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.4.nupkg
│ │ └── Microsoft.AspNet.WebApi.WebHost.5.2.4.nuspec
│ └── Microsoft.Web.Infrastructure.1.0.0.0
│ │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│ │ ├── lib
│ │ └── net40
│ │ │ └── Microsoft.Web.Infrastructure.dll
│ │ └── Microsoft.Web.Infrastructure.1.0.0.0.nuspec
└── WebAPI.sln
├── DBScript.sql
├── Structure of Angular Project.txt
└── README.md
/Angular5/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Angular5/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Angular5/src/app/quiz/quiz.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Angular5/src/app/navbar/navbar.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Angular5/src/app/register/register.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Angular5/src/app/result/result.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Angular5/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/WebAPI/WebAPI/bin/System.Web.Helpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.Helpers.dll
--------------------------------------------------------------------------------
/WebAPI/WebAPI/bin/System.Web.Http.Cors.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.Http.Cors.dll
--------------------------------------------------------------------------------
/WebAPI/WebAPI/bin/System.Web.WebPages.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.WebPages.dll
--------------------------------------------------------------------------------
/WebAPI/packages/repositories.config:
--------------------------------------------------------------------------------
1 |
2 |
5 | @Model.Text 6 |-------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /WebAPI/packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /WebAPI/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebAPI/WebAPI/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebAPI/WebAPI/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/TempPE/Models.DBModels.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/obj/Debug/TempPE/Models.DBModels.cs.dll -------------------------------------------------------------------------------- /WebAPI/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /WebAPI/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/EntityFramework.5.0.0/tools/migrate.exe -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/TempPE/Models.DBModels.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/obj/Debug/TempPE/Models.DBModels.Designer.cs.dll -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /WebAPI/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/WebAPI.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/obj/Debug/WebAPI.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1 -------------------------------------------------------------------------------- /WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages 3 | Layout = "~/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/WebAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using $rootnamespace$.Areas.HelpPage 2 | @model ImageSample 3 | 4 |
5 | @Model.Text 6 |-------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.5.2.4/Microsoft.AspNet.WebApi.5.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.5.2.4/Microsoft.AspNet.WebApi.5.2.4.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Cors.5.2.4/lib/net45/System.Web.Http.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Cors.5.2.4/lib/net45/System.Web.Http.Cors.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /WebAPI/packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Update the _references.js file 6 | Remove-Reference $scriptsFolderProjectItem $modernizrFileNameRegEx -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.Web.Optimization.1.1.1/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.Web.Optimization.1.1.1/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Client.5.2.4/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Client.5.2.4/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Core.5.2.4/Microsoft.AspNet.WebApi.Core.5.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Core.5.2.4/Microsoft.AspNet.WebApi.Core.5.2.4.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Cors.5.2.4/Microsoft.AspNet.WebApi.Cors.5.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Cors.5.2.4/Microsoft.AspNet.WebApi.Cors.5.2.4.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.WebHost.5.2.4/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.WebHost.5.2.4/lib/net45/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Client.5.2.4/Microsoft.AspNet.WebApi.Client.5.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Client.5.2.4/Microsoft.AspNet.WebApi.Client.5.2.4.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.WebHost.5.2.4/Microsoft.AspNet.WebApi.WebHost.5.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.WebHost.5.2.4/Microsoft.AspNet.WebApi.WebHost.5.2.4.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/Microsoft.AspNet.WebApi.HelpPage.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-5-Quiz-App-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/Microsoft.AspNet.WebApi.HelpPage.5.0.0.nupkg -------------------------------------------------------------------------------- /Angular5/e2e/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('app-root h1')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.5.0.0/Content/App.config.transform: -------------------------------------------------------------------------------- 1 |
Sample not available.
13 | } -------------------------------------------------------------------------------- /Angular5/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('angular5 App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | it('should display welcome message', () => { 11 | page.navigateTo(); 12 | expect(page.getParagraphText()).toEqual('Welcome to app!'); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/SampleGeneration/SampleDirection.cs.pp: -------------------------------------------------------------------------------- 1 | namespace $rootnamespace$.Areas.HelpPage 2 | { 3 | ///Sample not available.
13 | } -------------------------------------------------------------------------------- /WebAPI/packages/Modernizr.2.6.2/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | if ($scriptsFolderProjectItem -eq $null) { 6 | # No Scripts folder 7 | Write-Host "No Scripts folder found" 8 | exit 9 | } 10 | 11 | # Update the _references.js file 12 | AddOrUpdate-Reference $scriptsFolderProjectItem $modernizrFileNameRegEx $modernizrFileName -------------------------------------------------------------------------------- /Angular5/src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic().bootstrapModule(AppModule) 12 | .catch(err => console.log(err)); 13 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace WebAPI.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | public ActionResult Index() 12 | { 13 | ViewBag.Title = "Home Page"; 14 | 15 | return View(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Angular5/src/app/auth/auth.guard.spec.ts: -------------------------------------------------------------------------------- 1 | import { TestBed, async, inject } from '@angular/core/testing'; 2 | 3 | import { AuthGuard } from './auth.guard'; 4 | 5 | describe('AuthGuard', () => { 6 | beforeEach(() => { 7 | TestBed.configureTestingModule({ 8 | providers: [AuthGuard] 9 | }); 10 | }); 11 | 12 | it('should ...', inject([AuthGuard], (guard: AuthGuard) => { 13 | expect(guard).toBeTruthy(); 14 | })); 15 | }); 16 | -------------------------------------------------------------------------------- /Angular5/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // The file contents for the current environment will overwrite these during build. 2 | // The build system defaults to the dev environment which uses `environment.ts`, but if you do 3 | // `ng build --env=prod` then `environment.prod.ts` will be used instead. 4 | // The list of which env maps to which file can be found in `.angular-cli.json`. 5 | 6 | export const environment = { 7 | production: false 8 | }; 9 | -------------------------------------------------------------------------------- /Angular5/src/app/shared/quiz.service.spec.ts: -------------------------------------------------------------------------------- 1 | import { TestBed, inject } from '@angular/core/testing'; 2 | 3 | import { QuizService } from './quiz.service'; 4 | 5 | describe('QuizService', () => { 6 | beforeEach(() => { 7 | TestBed.configureTestingModule({ 8 | providers: [QuizService] 9 | }); 10 | }); 11 | 12 | it('should be created', inject([QuizService], (service: QuizService) => { 13 | expect(service).toBeTruthy(); 14 | })); 15 | }); 16 | -------------------------------------------------------------------------------- /Angular5/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "outDir": "./dist/out-tsc", 5 | "sourceMap": true, 6 | "declaration": false, 7 | "moduleResolution": "node", 8 | "emitDecoratorMetadata": true, 9 | "experimentalDecorators": true, 10 | "target": "es5", 11 | "typeRoots": [ 12 | "node_modules/@types" 13 | ], 14 | "lib": [ 15 | "es2017", 16 | "dom" 17 | ] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Models/DBModels.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | //14 | @Html.ActionLink("Help Page Home", "Index") 15 |
16 |14 | @Html.ActionLink("Help Page Home", "Index") 15 |
16 |Sample not available.
22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |Sample not available.
22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |27 | Provide a general description of your APIs here. 28 |
29 |{{quizService.qns[quizService.qnProgress].Qn}}
12 |27 | Provide a general description of your APIs here. 28 |
29 |@controllerDocumentation
18 | } 19 || API | Description |
|---|---|
| @api.HttpMethod.Method @api.RelativePath | 28 |
29 | @if (api.Documentation != null)
30 | {
31 | @api.Documentation 32 | } 33 | else 34 | { 35 |No documentation available. 36 | } 37 | |
38 |
@controllerDocumentation
18 | } 19 || API | Description |
|---|---|
| @api.HttpMethod.Method @api.RelativePath | 28 |
29 | @if (api.Documentation != null)
30 | {
31 | @api.Documentation 32 | } 33 | else 34 | { 35 |No documentation available. 36 | } 37 | |
38 |
9 | ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS, and JavaScript.
4 | 5 |ASP.NET Web API is a framework that makes it easy to build HTTP services that reach 10 | a broad range of clients, including browsers and mobile devices. ASP.NET Web API 11 | is an ideal platform for building RESTful applications on the .NET Framework.
12 | 13 |NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.
17 | 18 |You can easily find a web hosting company that offers the right mix of features and price for your applications.
22 | 23 |@description.Documentation
16 | } 17 | else 18 | { 19 |No documentation available.
20 | } 21 | 22 | @if (hasParameters || hasRequestSamples) 23 | { 24 |@description.ResponseDescription.Documentation
43 | } 44 | else 45 | { 46 |No documentation available.
47 | } 48 |@description.Documentation
16 | } 17 | else 18 | { 19 |No documentation available.
20 | } 21 | 22 | @if (hasParameters || hasRequestSamples) 23 | { 24 |@description.ResponseDescription.Documentation
43 | } 44 | else 45 | { 46 |No documentation available.
47 | } 48 || Name | Description | Additional information |
|---|---|---|
| @parameter.Name | 24 |@parameterDocumentation |
25 |
26 | @switch (parameter.Source)
27 | {
28 | case ApiParameterSource.FromBody:
29 | Define this parameter in the request body. 30 | break; 31 | case ApiParameterSource.FromUri: 32 |Define this parameter in the request URI. 33 | break; 34 | case ApiParameterSource.Unknown: 35 | default: 36 |None. 37 | break; 38 | } 39 | |
40 |
| Name | Description | Additional information |
|---|---|---|
| @parameter.Name | 24 |@parameterDocumentation |
25 |
26 | @switch (parameter.Source)
27 | {
28 | case ApiParameterSource.FromBody:
29 | Define this parameter in the request body. 30 | break; 31 | case ApiParameterSource.FromUri: 32 |Define this parameter in the request URI. 33 | break; 34 | case ApiParameterSource.Unknown: 35 | default: 36 |None. 37 | break; 38 | } 39 | |
40 |
8 | {{qn.Qn}}
31 |
23 |
24 |
25 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us |
26 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------|
27 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW |
28 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE |
29 | | React |http://bit.ly/325temF | |
30 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us |
31 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com |
32 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection |
33 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection |
34 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection |
35 | | MEAN Stack |https://goo.gl/YJPPAH | |
36 | | C# Tutorial |https://goo.gl/s1zJxo | |
37 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | |
38 | | C# WinForm |https://goo.gl/vHS9Hd | |
39 | | MS SQL |https://goo.gl/MLYS9e | |
40 | | Crystal Report |https://goo.gl/5Vou7t | |
41 | | CG Exercises in C Program |https://goo.gl/qEWJCs | |
42 |
43 |
--------------------------------------------------------------------------------
/Angular5/src/polyfills.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * This file includes polyfills needed by Angular and is loaded before the app.
3 | * You can add your own extra polyfills to this file.
4 | *
5 | * This file is divided into 2 sections:
6 | * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
7 | * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
8 | * file.
9 | *
10 | * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
11 | * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
12 | * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
13 | *
14 | * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
15 | */
16 |
17 | /***************************************************************************************************
18 | * BROWSER POLYFILLS
19 | */
20 |
21 | /** IE9, IE10 and IE11 requires all of the following polyfills. **/
22 | // import 'core-js/es6/symbol';
23 | // import 'core-js/es6/object';
24 | // import 'core-js/es6/function';
25 | // import 'core-js/es6/parse-int';
26 | // import 'core-js/es6/parse-float';
27 | // import 'core-js/es6/number';
28 | // import 'core-js/es6/math';
29 | // import 'core-js/es6/string';
30 | // import 'core-js/es6/date';
31 | // import 'core-js/es6/array';
32 | // import 'core-js/es6/regexp';
33 | // import 'core-js/es6/map';
34 | // import 'core-js/es6/weak-map';
35 | // import 'core-js/es6/set';
36 |
37 | /** IE10 and IE11 requires the following for NgClass support on SVG elements */
38 | // import 'classlist.js'; // Run `npm install --save classlist.js`.
39 |
40 | /** IE10 and IE11 requires the following for the Reflect API. */
41 | // import 'core-js/es6/reflect';
42 |
43 |
44 | /** Evergreen browsers require these. **/
45 | // Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.
46 | import 'core-js/es7/reflect';
47 |
48 |
49 | /**
50 | * Required to support Web Animations `@angular/platform-browser/animations`.
51 | * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation
52 | **/
53 | // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
54 |
55 |
56 |
57 | /***************************************************************************************************
58 | * Zone JS is required by default for Angular itself.
59 | */
60 | import 'zone.js/dist/zone'; // Included with Angular CLI.
61 |
62 |
63 |
64 | /***************************************************************************************************
65 | * APPLICATION IMPORTS
66 | */
67 |
--------------------------------------------------------------------------------
/WebAPI/packages/Modernizr.2.6.2/Tools/common.ps1:
--------------------------------------------------------------------------------
1 | function AddOrUpdate-Reference($scriptsFolderProjectItem, $fileNamePattern, $newFileName) {
2 | try {
3 | $referencesFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("_references.js")
4 | }
5 | catch {
6 | # _references.js file not found
7 | return
8 | }
9 |
10 | if ($referencesFileProjectItem -eq $null) {
11 | # _references.js file not found
12 | return
13 | }
14 |
15 | $referencesFilePath = $referencesFileProjectItem.FileNames(1)
16 | $referencesTempFilePath = Join-Path $env:TEMP "_references.tmp.js"
17 |
18 | if ((Select-String $referencesFilePath -pattern $fileNamePattern).Length -eq 0) {
19 | # File has no existing matching reference line
20 | # Add the full reference line to the beginning of the file
21 | "///