├── AuthECClient
├── src
│ ├── app
│ │ ├── app.component.html
│ │ ├── shared
│ │ │ ├── constants.ts
│ │ │ ├── utils
│ │ │ │ └── claimReq-utils.ts
│ │ │ ├── pipes
│ │ │ │ └── first-key.pipe.ts
│ │ │ ├── services
│ │ │ │ ├── user.service.ts
│ │ │ │ └── auth.service.ts
│ │ │ ├── auth.guard.ts
│ │ │ └── auth.interceptor.ts
│ │ ├── authorizeDemo
│ │ │ ├── admin-only
│ │ │ │ ├── admin-only.component.html
│ │ │ │ └── admin-only.component.ts
│ │ │ ├── admin-or-teacher
│ │ │ │ ├── admin-or-teacher.component.html
│ │ │ │ └── admin-or-teacher.component.ts
│ │ │ ├── under10-and-female
│ │ │ │ ├── under10-and-female.component.html
│ │ │ │ └── under10-and-female.component.ts
│ │ │ ├── library-members-only
│ │ │ │ ├── library-members-only.component.html
│ │ │ │ └── library-members-only.component.ts
│ │ │ └── apply-for-maternity-leave
│ │ │ │ ├── apply-for-maternity-leave.component.html
│ │ │ │ └── apply-for-maternity-leave.component.ts
│ │ ├── forbidden
│ │ │ ├── forbidden.component.html
│ │ │ └── forbidden.component.ts
│ │ ├── dashboard
│ │ │ ├── dashboard.component.html
│ │ │ └── dashboard.component.ts
│ │ ├── app.component.ts
│ │ ├── directives
│ │ │ └── hide-if-claims-not-met.directive.ts
│ │ ├── app.config.ts
│ │ ├── user
│ │ │ ├── user.component.html
│ │ │ ├── user.component.ts
│ │ │ ├── login
│ │ │ │ ├── login.component.html
│ │ │ │ └── login.component.ts
│ │ │ └── registration
│ │ │ │ ├── registration.component.html
│ │ │ │ └── registration.component.ts
│ │ ├── layouts
│ │ │ └── main-layout
│ │ │ │ ├── main-layout.component.ts
│ │ │ │ └── main-layout.component.html
│ │ └── app.routes.ts
│ ├── environments
│ │ ├── environment.ts
│ │ └── environment.development.ts
│ ├── main.ts
│ ├── styles.css
│ └── index.html
├── .vscode
│ ├── extensions.json
│ ├── launch.json
│ └── tasks.json
├── public
│ ├── favicon.ico
│ └── authec-logo.png
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── .gitignore
├── app-structure.txt
├── tsconfig.json
├── README.md
├── package.json
└── angular.json
├── AuthECAPI
├── AuthECAPI
│ ├── obj
│ │ ├── Debug
│ │ │ └── net8.0
│ │ │ │ ├── AuthECAPI.csproj.Up2Date
│ │ │ │ ├── AuthECAPI.csproj.BuildWithSkipAnalyzers
│ │ │ │ ├── AuthECAPI.MvcApplicationPartsAssemblyInfo.cache
│ │ │ │ ├── AuthECAPI.genruntimeconfig.cache
│ │ │ │ ├── AuthECAPI.AssemblyInfoInputs.cache
│ │ │ │ ├── AuthECAPI.csproj.CoreCompileInputs.cache
│ │ │ │ ├── staticwebassets
│ │ │ │ ├── msbuild.buildMultiTargeting.AuthECAPI.props
│ │ │ │ ├── msbuild.build.AuthECAPI.props
│ │ │ │ └── msbuild.buildTransitive.AuthECAPI.props
│ │ │ │ ├── AuthECAPI.dll
│ │ │ │ ├── AuthECAPI.pdb
│ │ │ │ ├── apphost.exe
│ │ │ │ ├── ref
│ │ │ │ └── AuthECAPI.dll
│ │ │ │ ├── refint
│ │ │ │ └── AuthECAPI.dll
│ │ │ │ ├── AuthECAPI.assets.cache
│ │ │ │ ├── AuthECAPI.csproj.AssemblyReference.cache
│ │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs
│ │ │ │ ├── staticwebassets.build.json
│ │ │ │ ├── AuthECAPI.MvcApplicationPartsAssemblyInfo.cs
│ │ │ │ ├── AuthECAPI.GlobalUsings.g.cs
│ │ │ │ ├── AuthECAPI.AssemblyInfo.cs
│ │ │ │ └── AuthECAPI.GeneratedMSBuildEditorConfig.editorconfig
│ │ ├── AuthECAPI.csproj.nuget.g.targets
│ │ ├── AuthECAPI.csproj.nuget.g.props
│ │ ├── AuthECAPI.csproj.nuget.dgspec.json
│ │ └── project.nuget.cache
│ ├── Controllers
│ │ ├── OrderEndpoints.cs
│ │ ├── AccountEndpoints.cs
│ │ ├── AuthorizationDemoEndpoints.cs
│ │ ├── WeatherForecastController.cs
│ │ └── IdentityUserEndpoints.cs
│ ├── AuthECAPI.http
│ ├── Models
│ │ ├── AppSettings.cs
│ │ ├── AppDbContext.cs
│ │ └── AppUser.cs
│ ├── appsettings.Development.json
│ ├── bin
│ │ └── Debug
│ │ │ └── net8.0
│ │ │ ├── AuthECAPI.dll
│ │ │ ├── AuthECAPI.exe
│ │ │ ├── AuthECAPI.pdb
│ │ │ ├── Humanizer.dll
│ │ │ ├── appsettings.Development.json
│ │ │ ├── Azure.Core.dll
│ │ │ ├── Azure.Identity.dll
│ │ │ ├── System.CodeDom.dll
│ │ │ ├── System.Text.Json.dll
│ │ │ ├── Microsoft.OpenApi.dll
│ │ │ ├── Mono.TextTemplating.dll
│ │ │ ├── System.Memory.Data.dll
│ │ │ ├── System.Drawing.Common.dll
│ │ │ ├── Microsoft.CodeAnalysis.dll
│ │ │ ├── Microsoft.Data.SqlClient.dll
│ │ │ ├── System.Runtime.Caching.dll
│ │ │ ├── Microsoft.Identity.Client.dll
│ │ │ ├── Microsoft.SqlServer.Server.dll
│ │ │ ├── System.Composition.Hosting.dll
│ │ │ ├── System.Composition.Runtime.dll
│ │ │ ├── System.Windows.Extensions.dll
│ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ │ ├── Microsoft.EntityFrameworkCore.dll
│ │ │ ├── Microsoft.Extensions.Options.dll
│ │ │ ├── Microsoft.Win32.SystemEvents.dll
│ │ │ ├── System.Composition.Convention.dll
│ │ │ ├── System.Composition.TypedParts.dll
│ │ │ ├── System.Security.Permissions.dll
│ │ │ ├── Microsoft.IdentityModel.Logging.dll
│ │ │ ├── Microsoft.IdentityModel.Tokens.dll
│ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll
│ │ │ ├── System.IdentityModel.Tokens.Jwt.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll
│ │ │ ├── Microsoft.Extensions.Identity.Core.dll
│ │ │ ├── Microsoft.IdentityModel.Protocols.dll
│ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll
│ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll
│ │ │ ├── System.Composition.AttributedModel.dll
│ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll
│ │ │ ├── Microsoft.Extensions.DependencyModel.dll
│ │ │ ├── Microsoft.Extensions.Identity.Stores.dll
│ │ │ ├── Microsoft.IdentityModel.Abstractions.dll
│ │ │ ├── cs
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── de
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── es
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── fr
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── it
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── ja
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── ko
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── pl
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── ru
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── tr
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll
│ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll
│ │ │ ├── pt-BR
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll
│ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll
│ │ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll
│ │ │ ├── System.Configuration.ConfigurationManager.dll
│ │ │ ├── zh-Hans
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── zh-Hant
│ │ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll
│ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll
│ │ │ ├── System.Security.Cryptography.ProtectedData.dll
│ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll
│ │ │ ├── runtimes
│ │ │ ├── unix
│ │ │ │ └── lib
│ │ │ │ │ └── net6.0
│ │ │ │ │ ├── System.Drawing.Common.dll
│ │ │ │ │ └── Microsoft.Data.SqlClient.dll
│ │ │ ├── win
│ │ │ │ └── lib
│ │ │ │ │ └── net6.0
│ │ │ │ │ ├── System.Drawing.Common.dll
│ │ │ │ │ ├── System.Runtime.Caching.dll
│ │ │ │ │ ├── Microsoft.Data.SqlClient.dll
│ │ │ │ │ ├── System.Windows.Extensions.dll
│ │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll
│ │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll
│ │ │ ├── win-arm
│ │ │ │ └── native
│ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ │ ├── win-arm64
│ │ │ │ └── native
│ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ │ ├── win-x64
│ │ │ │ └── native
│ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ │ └── win-x86
│ │ │ │ └── native
│ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
│ │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
│ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
│ │ │ ├── appsettings.json
│ │ │ ├── AuthECAPI.runtimeconfig.json
│ │ │ └── userdetails.json
│ ├── WeatherForecast.cs
│ ├── appsettings.json
│ ├── Extensions
│ │ ├── EFCoreExtensions.cs
│ │ ├── AppConfigExtensions.cs
│ │ ├── SwaggerExtensions.cs
│ │ └── IdentityExtensions.cs
│ ├── Migrations
│ │ ├── 20240714024834_NameIsAddedInUserEntity.cs
│ │ ├── 20240714025755_NameIsAddedInUserEntity2.cs
│ │ ├── 20240813044904_AddedGenderDOBLibraryID.cs
│ │ ├── 20240713160809_InitialMigration.cs
│ │ ├── 20240713160809_InitialMigration.Designer.cs
│ │ ├── 20240714024834_NameIsAddedInUserEntity.Designer.cs
│ │ ├── 20240714025755_NameIsAddedInUserEntity2.Designer.cs
│ │ └── AppDbContextModelSnapshot.cs
│ ├── Properties
│ │ └── launchSettings.json
│ ├── AuthECAPI.csproj
│ ├── Program.cs
│ └── userdetails.json
├── .vs
│ ├── AuthECAPI
│ │ ├── v17
│ │ │ ├── .suo
│ │ │ └── .futdcache.v2
│ │ ├── DesignTimeBuild
│ │ │ └── .dtbcache.v2
│ │ └── FileContentIndex
│ │ │ ├── 153abe46-21a3-4133-a07b-24ba28766040.vsidx
│ │ │ ├── 55b0c862-530b-491c-9dc2-9798c600ae73.vsidx
│ │ │ ├── 9833bd9a-2426-4b55-ab5a-5b119d5e9b08.vsidx
│ │ │ ├── b7c1b9bb-e124-4309-8d1b-188b97d9adb0.vsidx
│ │ │ └── ed68b846-ee2f-42ae-9d92-a5e3fd2ad131.vsidx
│ └── ProjectEvaluation
│ │ ├── authecapi.metadata.v8.bin
│ │ ├── authecapi.projects.v8.bin
│ │ └── authecapi.strings.v8.bin
├── .editorconfig
└── AuthECAPI.sln
└── README.md
/AuthECClient/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/obj/Debug/net8.0/AuthECAPI.csproj.Up2Date:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthECClient/src/app/shared/constants.ts:
--------------------------------------------------------------------------------
1 | export const TOKEN_KEY = 'token';
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/obj/Debug/net8.0/AuthECAPI.csproj.BuildWithSkipAnalyzers:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/obj/Debug/net8.0/AuthECAPI.MvcApplicationPartsAssemblyInfo.cache:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthECClient/src/app/authorizeDemo/admin-only/admin-only.component.html:
--------------------------------------------------------------------------------
1 |
2 |
Ooops!
3 |
403 Permission Denied
4 |
You don't have the permission to view the page.
5 |
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Identity.Client.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Identity.Client.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.Hosting.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.Hosting.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.Runtime.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Windows.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Windows.Extensions.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.Options.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.Options.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.Convention.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.Convention.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.TypedParts.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.TypedParts.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Security.Permissions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Security.Permissions.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.Identity.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.Identity.Core.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.AttributedModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Composition.AttributedModel.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.Identity.Stores.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Extensions.Identity.Stores.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/obj/Debug/net8.0/AuthECAPI.csproj.AssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/obj/Debug/net8.0/AuthECAPI.csproj.AssemblyReference.cache
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/.vs/AuthECAPI/FileContentIndex/153abe46-21a3-4133-a07b-24ba28766040.vsidx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/.vs/AuthECAPI/FileContentIndex/153abe46-21a3-4133-a07b-24ba28766040.vsidx
--------------------------------------------------------------------------------
/AuthECAPI/.vs/AuthECAPI/FileContentIndex/55b0c862-530b-491c-9dc2-9798c600ae73.vsidx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/.vs/AuthECAPI/FileContentIndex/55b0c862-530b-491c-9dc2-9798c600ae73.vsidx
--------------------------------------------------------------------------------
/AuthECAPI/.vs/AuthECAPI/FileContentIndex/9833bd9a-2426-4b55-ab5a-5b119d5e9b08.vsidx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/.vs/AuthECAPI/FileContentIndex/9833bd9a-2426-4b55-ab5a-5b119d5e9b08.vsidx
--------------------------------------------------------------------------------
/AuthECAPI/.vs/AuthECAPI/FileContentIndex/b7c1b9bb-e124-4309-8d1b-188b97d9adb0.vsidx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/.vs/AuthECAPI/FileContentIndex/b7c1b9bb-e124-4309-8d1b-188b97d9adb0.vsidx
--------------------------------------------------------------------------------
/AuthECAPI/.vs/AuthECAPI/FileContentIndex/ed68b846-ee2f-42ae-9d92-a5e3fd2ad131.vsidx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/.vs/AuthECAPI/FileContentIndex/ed68b846-ee2f-42ae-9d92-a5e3fd2ad131.vsidx
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Angular-and-Asp.Net.Core-API-Authorization-with-Role-Claim-and-Policy/main/AuthECAPI/AuthECAPI/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
--------------------------------------------------------------------------------
/AuthECAPI/AuthECAPI/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs:
--------------------------------------------------------------------------------
1 | //