├── Angular5 ├── src │ ├── assets │ │ └── .gitkeep │ ├── app │ │ ├── app.component.css │ │ ├── sign-up │ │ │ ├── sign-up.component.css │ │ │ ├── sign-up.component.spec.ts │ │ │ ├── sign-up.component.ts │ │ │ └── sign-up.component.html │ │ ├── app.component.html │ │ ├── shared │ │ │ ├── user.model.ts │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── app.component.spec.ts │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── typings.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ ├── main.ts │ ├── styles.css │ ├── index.html │ ├── test.ts │ └── 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 │ │ │ ├── WebAPI.Migrations.InitailDB.resources │ │ │ ├── WebAPI.csproj.GenerateResource.Cache │ │ │ ├── WebAPI.csprojResolveAssemblyReference.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── WebAPI.Migrations.ChangedDefaultColumnNames.resources │ │ │ └── WebAPI.Migrations.ChangedDefaultTableNames.resources │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ └── Web.config │ ├── Global.asax │ ├── favicon.ico │ ├── 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 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── System.Web.Http.WebHost.dll │ │ ├── System.Web.Optimization.dll │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── Microsoft.AspNet.Identity.Core.dll │ │ ├── Microsoft.Web.Infrastructure.dll │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── Microsoft.AspNet.Identity.EntityFramework.dll │ │ └── WebAPI.dll.config │ ├── 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 │ ├── Scripts │ │ ├── _references.js │ │ └── respond.min.js │ ├── 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 │ │ └── AccountController.cs │ ├── Models │ │ ├── AccountModel.cs │ │ └── IdentityModels.cs │ ├── Migrations │ │ ├── 201801311545174_ChangedDefaultColumnNames.cs │ │ ├── 201801311530466_InitailDB.Designer.cs │ │ ├── 201801311540510_ChangedDefaultTableNames.Designer.cs │ │ ├── 201801311545174_ChangedDefaultColumnNames.Designer.cs │ │ ├── Configuration.cs │ │ └── 201801311540510_ChangedDefaultTableNames.cs │ ├── Global.asax.cs │ ├── Content │ │ └── Site.css │ ├── 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 │ │ │ └── common.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.6.1.3 │ │ ├── tools │ │ │ ├── migrate.exe │ │ │ ├── EntityFramework.psd1 │ │ │ ├── EntityFramework.PowerShell.dll │ │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ │ └── about_EntityFramework.help.txt │ │ ├── EntityFramework.6.1.3.nupkg │ │ ├── lib │ │ │ ├── net40 │ │ │ │ ├── EntityFramework.dll │ │ │ │ └── EntityFramework.SqlServer.dll │ │ │ └── net45 │ │ │ │ ├── EntityFramework.dll │ │ │ │ └── EntityFramework.SqlServer.dll │ │ ├── content │ │ │ ├── App.config.transform │ │ │ └── Web.config.transform │ │ └── EntityFramework.6.1.3.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 │ ├── 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 │ │ └── tools │ │ │ └── install.ps1 │ ├── 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.Cors.5.2.3 │ │ ├── lib │ │ │ └── net45 │ │ │ │ └── System.Web.Cors.dll │ │ ├── Microsoft.AspNet.Cors.5.2.3.nupkg │ │ └── Microsoft.AspNet.Cors.5.2.3.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.5.0.0 │ │ ├── Microsoft.AspNet.WebApi.5.0.0.nupkg │ │ └── Microsoft.AspNet.WebApi.5.0.0.nuspec │ ├── Microsoft.AspNet.WebApi.Core.5.2.3 │ │ ├── lib │ │ │ └── net45 │ │ │ │ └── System.Web.Http.dll │ │ ├── Microsoft.AspNet.WebApi.Core.5.2.3.nupkg │ │ ├── Content │ │ │ └── web.config.transform │ │ └── Microsoft.AspNet.WebApi.Core.5.2.3.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.Cors.5.2.3 │ │ ├── lib │ │ │ └── net45 │ │ │ │ └── System.Web.Http.Cors.dll │ │ ├── Microsoft.AspNet.WebApi.Cors.5.2.3.nupkg │ │ └── Microsoft.AspNet.WebApi.Cors.5.2.3.nuspec │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.3 │ │ ├── lib │ │ │ └── net45 │ │ │ │ └── System.Web.Http.WebHost.dll │ │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg │ │ └── Microsoft.AspNet.WebApi.WebHost.5.2.3.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.3 │ │ ├── lib │ │ │ ├── net45 │ │ │ │ └── System.Net.Http.Formatting.dll │ │ │ └── portable-wp8+netcore45+net45+wp81+wpa81 │ │ │ │ └── System.Net.Http.Formatting.dll │ │ ├── Microsoft.AspNet.WebApi.Client.5.2.3.nupkg │ │ └── Microsoft.AspNet.WebApi.Client.5.2.3.nuspec │ ├── Microsoft.AspNet.Identity.Core.2.2.1 │ │ ├── Microsoft.AspNet.Identity.Core.2.2.1.nupkg │ │ ├── lib │ │ │ └── net45 │ │ │ │ └── Microsoft.AspNet.Identity.Core.dll │ │ └── Microsoft.AspNet.Identity.Core.2.2.1.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 │ └── Microsoft.AspNet.Identity.EntityFramework.2.2.1 │ │ ├── Microsoft.AspNet.Identity.EntityFramework.2.2.1.nupkg │ │ ├── lib │ │ └── net45 │ │ │ └── Microsoft.AspNet.Identity.EntityFramework.dll │ │ └── Microsoft.AspNet.Identity.EntityFramework.2.2.1.nuspec └── WebAPI.sln └── README.md /Angular5/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular5/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular5/src/app/sign-up/sign-up.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular5/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |
5 | @Model.Text 6 |-------------------------------------------------------------------------------- /WebAPI/packages/WebGrease.1.5.2/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/WebGrease.1.5.2/tools/WG.exe -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /WebAPI/packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /Angular5/src/app/shared/user.model.ts: -------------------------------------------------------------------------------- 1 | export class User { 2 | UserName: string; 3 | Password: string; 4 | Email: string; 5 | FirstName: string; 6 | LastName: string; 7 | } 8 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebAPI/WebAPI/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebAPI/WebAPI/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebAPI/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.6.1.3/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/EntityFramework.6.1.3/tools/migrate.exe -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/WebAPI.Migrations.InitailDB.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/obj/Debug/WebAPI.Migrations.InitailDB.resources -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/WebAPI.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/obj/Debug/WebAPI.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /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/bin/Microsoft.AspNet.Identity.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/bin/Microsoft.AspNet.Identity.EntityFramework.dll -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /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/WebAPI/obj/Debug/WebAPI.Migrations.ChangedDefaultColumnNames.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/obj/Debug/WebAPI.Migrations.ChangedDefaultColumnNames.resources -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/WebAPI.Migrations.ChangedDefaultTableNames.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/WebAPI/obj/Debug/WebAPI.Migrations.ChangedDefaultTableNames.resources -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.Cors.5.2.3/Microsoft.AspNet.Cors.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.Cors.5.2.3/Microsoft.AspNet.Cors.5.2.3.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebAPI/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.5.0.0/Microsoft.AspNet.WebApi.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.5.0.0/Microsoft.AspNet.WebApi.5.0.0.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.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.WebApi.Cors.5.2.3/lib/net45/System.Web.Http.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Cors.5.2.3/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/User-Registration-in-Angular-5-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/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Cors.5.2.3/Microsoft.AspNet.WebApi.Cors.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Cors.5.2.3/Microsoft.AspNet.WebApi.Cors.5.2.3.nupkg -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/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/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.Web.Optimization.1.1.1/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-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.3/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-in-Angular-5-With-Web-API/master/WebAPI/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /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.6.1.3/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 | } -------------------------------------------------------------------------------- /Angular5/src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "target": "es5", 8 | "types": [ 9 | "jasmine", 10 | "node" 11 | ] 12 | }, 13 | "files": [ 14 | "test.ts" 15 | ], 16 | "include": [ 17 | "**/*.spec.ts", 18 | "**/*.d.ts" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /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/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/user.service.spec.ts: -------------------------------------------------------------------------------- 1 | import { TestBed, inject } from '@angular/core/testing'; 2 | 3 | import { UserService } from './user.service'; 4 | 5 | describe('UserService', () => { 6 | beforeEach(() => { 7 | TestBed.configureTestingModule({ 8 | providers: [UserService] 9 | }); 10 | }); 11 | 12 | it('should be created', inject([UserService], (service: UserService) => { 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/AccountModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace WebAPI.Models 7 | { 8 | public class AccountModel 9 | { 10 | public string UserName { get; set; } 11 | public string Email { get; set; } 12 | public string Password { get; set; } 13 | public string FirstName { get; set; } 14 | public string LastName { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Angular5/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | div.sm-jumbotron{ 3 | margin: 0px; 4 | padding: 2rem; 5 | background-color: #38547b; 6 | color: #fff; 7 | } 8 | 9 | button.btn-submit{ 10 | background-color: #38547b; 11 | color: #fff; 12 | width: 100%; 13 | } 14 | button.btn-submit:focus,button.btn-submit:hover{ 15 | background-color: #38547b; 16 | } 17 | 18 | /* input.ng-invalid.ng-dirty{ 19 | border-bottom-color : #e91e63 !important; 20 | box-shadow: 0 1px 0 0 #e91e63 !important; 21 | } */ -------------------------------------------------------------------------------- /WebAPI/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform: -------------------------------------------------------------------------------- 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 |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 |
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 |
35 |
36 |
37 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us |
38 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------|
39 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW |
40 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE |
41 | | React |http://bit.ly/325temF | |
42 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us |
43 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com |
44 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection |
45 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection |
46 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection |
47 | | MEAN Stack |https://goo.gl/YJPPAH | |
48 | | C# Tutorial |https://goo.gl/s1zJxo | |
49 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | |
50 | | C# WinForm |https://goo.gl/vHS9Hd | |
51 | | MS SQL |https://goo.gl/MLYS9e | |
52 | | Crystal Report |https://goo.gl/5Vou7t | |
53 | | CG Exercises in C Program |https://goo.gl/qEWJCs | |
54 |
--------------------------------------------------------------------------------
/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 | "///