├── Angular 7 ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── appStructure.txt ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── shared │ │ │ └── user.service.ts │ │ └── user │ │ │ ├── registration │ │ │ ├── registration.component.html │ │ │ └── registration.component.ts │ │ │ ├── user.component.html │ │ │ └── user.component.ts │ ├── assets │ │ ├── .gitkeep │ │ └── img │ │ │ └── add_user.png │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── README.md └── WebAPI ├── .vs ├── WebAPI │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal └── config │ └── applicationhost.config ├── WebAPI.sln └── WebAPI ├── Controllers ├── ApplicationUserController.cs └── ValuesController.cs ├── Migrations ├── 20190124045416_InitialCreate.Designer.cs ├── 20190124045416_InitialCreate.cs └── AuthenticationContextModelSnapshot.cs ├── Models ├── ApplicationUser.cs ├── ApplicationUserModel.cs └── AuthenticationContext.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WebAPI.csproj ├── WebAPI.csproj.user ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp2.2 │ ├── WebAPI.deps.json │ ├── WebAPI.dll │ ├── WebAPI.pdb │ ├── WebAPI.runtimeconfig.dev.json │ └── WebAPI.runtimeconfig.json └── obj ├── Debug └── netcoreapp2.2 │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WebAPI.AssemblyInfo.cs │ ├── WebAPI.AssemblyInfoInputs.cache │ ├── WebAPI.RazorAssemblyInfo.cache │ ├── WebAPI.RazorAssemblyInfo.cs │ ├── WebAPI.RazorTargetAssemblyInfo.cache │ ├── WebAPI.assets.cache │ ├── WebAPI.csproj.CoreCompileInputs.cache │ ├── WebAPI.csproj.FileListAbsolute.txt │ ├── WebAPI.csprojAssemblyReference.cache │ ├── WebAPI.dll │ └── WebAPI.pdb ├── WebAPI.csproj.nuget.cache ├── WebAPI.csproj.nuget.g.props ├── WebAPI.csproj.nuget.g.targets └── project.assets.json /Angular 7/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/.editorconfig -------------------------------------------------------------------------------- /Angular 7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/.gitignore -------------------------------------------------------------------------------- /Angular 7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/README.md -------------------------------------------------------------------------------- /Angular 7/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/angular.json -------------------------------------------------------------------------------- /Angular 7/appStructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/appStructure.txt -------------------------------------------------------------------------------- /Angular 7/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Angular 7/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Angular 7/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Angular 7/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Angular 7/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/package-lock.json -------------------------------------------------------------------------------- /Angular 7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/package.json -------------------------------------------------------------------------------- /Angular 7/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/app.component.html -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/app.component.ts -------------------------------------------------------------------------------- /Angular 7/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/app.module.ts -------------------------------------------------------------------------------- /Angular 7/src/app/shared/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/shared/user.service.ts -------------------------------------------------------------------------------- /Angular 7/src/app/user/registration/registration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/user/registration/registration.component.html -------------------------------------------------------------------------------- /Angular 7/src/app/user/registration/registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/user/registration/registration.component.ts -------------------------------------------------------------------------------- /Angular 7/src/app/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/user/user.component.html -------------------------------------------------------------------------------- /Angular 7/src/app/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/app/user/user.component.ts -------------------------------------------------------------------------------- /Angular 7/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular 7/src/assets/img/add_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/assets/img/add_user.png -------------------------------------------------------------------------------- /Angular 7/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/browserslist -------------------------------------------------------------------------------- /Angular 7/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular 7/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/environments/environment.ts -------------------------------------------------------------------------------- /Angular 7/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/favicon.ico -------------------------------------------------------------------------------- /Angular 7/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/index.html -------------------------------------------------------------------------------- /Angular 7/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/karma.conf.js -------------------------------------------------------------------------------- /Angular 7/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/main.ts -------------------------------------------------------------------------------- /Angular 7/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/polyfills.ts -------------------------------------------------------------------------------- /Angular 7/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/styles.css -------------------------------------------------------------------------------- /Angular 7/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/test.ts -------------------------------------------------------------------------------- /Angular 7/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/tsconfig.app.json -------------------------------------------------------------------------------- /Angular 7/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Angular 7/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/src/tslint.json -------------------------------------------------------------------------------- /Angular 7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/tsconfig.json -------------------------------------------------------------------------------- /Angular 7/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/Angular 7/tslint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/README.md -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/.vs/WebAPI/v15/.suo -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /WebAPI/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /WebAPI/WebAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI.sln -------------------------------------------------------------------------------- /WebAPI/WebAPI/Controllers/ApplicationUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Controllers/ApplicationUserController.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Migrations/20190124045416_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Migrations/20190124045416_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Migrations/20190124045416_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Migrations/20190124045416_InitialCreate.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Migrations/AuthenticationContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Migrations/AuthenticationContextModelSnapshot.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Models/ApplicationUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Models/ApplicationUserModel.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Models/AuthenticationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Models/AuthenticationContext.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/WebAPI/WebAPI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/WebAPI.csproj.user -------------------------------------------------------------------------------- /WebAPI/WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.deps.json -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.runtimeconfig.dev.json -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.runtimeconfig.json -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 956d135b4025f3ddc3d3abd4139e3f09fdc815fb 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 425a257f2524fe85d4c5b963eb1a394a4032abc4 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.assets.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f67d45fcea216095a8930676d6e38a91e949b14e 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/WebAPI.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/WebAPI.csproj.nuget.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/WebAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/WebAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/WebAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/WebAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/User-Registration-with-Asp.Net-Core-Web-API-and-Angular-7/HEAD/WebAPI/WebAPI/obj/project.assets.json --------------------------------------------------------------------------------