11 | {
12 | public string Message { get; set; }
13 | public int StatusCode { get; set; }
14 | public T Result { get; set; }
15 | }
16 |
17 | public class Error
18 | {
19 | public string ErrorMessage { get; set; }
20 |
21 | public static int LogError(Exception ex)
22 | {
23 | try
24 | {
25 | using (StreamWriter sw = File.AppendText(AppDomain.CurrentDomain.BaseDirectory + "/ErrorLog.txt"))
26 | {
27 | sw.WriteLine("DateTime : " + DateTime.Now + Environment.NewLine);
28 | if (ex.Message != null)
29 | {
30 | sw.WriteLine(Environment.NewLine + "Message" + ex.Message);
31 | sw.WriteLine(Environment.NewLine + "StackTrace" + ex.StackTrace);
32 | }
33 | again: if (ex.InnerException != null)
34 | {
35 | sw.WriteLine(Environment.NewLine + "Inner Exception : " + ex.InnerException.Message);
36 | }
37 | if (ex.InnerException.InnerException != null)
38 | {
39 | ex = ex.InnerException;
40 | goto again;
41 | }
42 |
43 | sw.WriteLine("------******------");
44 | }
45 | return StatusCodes.Status500InternalServerError;
46 | }
47 | catch (Exception)
48 | {
49 | return StatusCodes.Status500InternalServerError;
50 | }
51 | }
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/NetCoreWebApi/Utility/Enums.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Threading.Tasks;
5 |
6 | namespace Wasalee.Utility
7 | {
8 | public enum UserTypes
9 | {
10 | User,
11 | Driver
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/NetCoreWebApi/Utility/ExtensionMethods.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Security.Claims;
5 | using System.Security.Principal;
6 | using System.Threading.Tasks;
7 |
8 | namespace Wasalee.Utility
9 | {
10 | public static class ExtensionMethods
11 | {
12 | public static string GetClaimValue(this IPrincipal currentPrincipal, string key)
13 | {
14 | var identity = currentPrincipal.Identity as ClaimsIdentity;
15 | if (identity == null)
16 | return null;
17 |
18 | var claim = identity.Claims.FirstOrDefault(c => c.Type == key);
19 | return claim?.Value;
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/NetCoreWebApi/Utility/Global.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Threading.Tasks;
5 |
6 | namespace Wasalee.Utility
7 | {
8 | public static class Global
9 | {
10 | public class ResponseMessages
11 | {
12 | public const string Success = "Success";
13 | public const string NotFound = "NotFound";
14 | public const string BadRequest = "BadRequest";
15 | public const string Conflict = "Conflict";
16 | public const string Forbidden = "Forbidden";
17 |
18 | public static string CannotBeEmpty(params string[] args)
19 | {
20 | try
21 | {
22 | string returnString = "";
23 | for (int i = 0; i < args.Length; i++)
24 | returnString += args[i] + ", ";
25 | returnString = returnString.Remove(returnString.LastIndexOf(','), 1);
26 | return returnString + "cannot be empty";
27 | }
28 | catch (Exception ex)
29 | {
30 | throw ex;
31 | }
32 | }
33 |
34 | public static string GenerateInvalid(params string[] args)
35 | {
36 | try
37 | {
38 | string returnString = "";
39 | for (int i = 0; i < args.Length; i++)
40 | returnString += args[i] + ", ";
41 | returnString = returnString.Remove(returnString.LastIndexOf(','), 1);
42 | return "Invalid " + returnString;
43 | }
44 | catch (Exception ex)
45 | {
46 | throw ex;
47 | }
48 | }
49 |
50 | public static string GenerateAlreadyExists(string arg)
51 | {
52 | try
53 | {
54 | return arg + " already exists";
55 | }
56 | catch (Exception ex)
57 | {
58 | throw ex;
59 | }
60 | }
61 |
62 | public static string GenerateNotFound(string arg)
63 | {
64 | try
65 | {
66 | return arg + " not found";
67 | }
68 | catch (Exception ex)
69 | {
70 | throw ex;
71 | }
72 | }
73 | }
74 | }
75 |
76 | }
77 |
--------------------------------------------------------------------------------
/NetCoreWebApi/Views/Shared/Error.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Error";
3 | }
4 |
5 | Error.
6 | An error occurred while processing your request.
7 |
8 | Development Mode
9 |
10 | Swapping to Development environment will display more detailed information about the error that occurred.
11 |
12 |
13 | Development environment should not be enabled in deployed applications, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development, and restarting the application.
14 |
15 |
--------------------------------------------------------------------------------
/NetCoreWebApi/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/NetCoreWebApi/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "LogLevel": {
5 | "Default": "Debug",
6 | "System": "Information",
7 | "Microsoft": "Information"
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/NetCoreWebApi/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "Debug": {
5 | "LogLevel": {
6 | "Default": "Warning"
7 | }
8 | },
9 | "Console": {
10 | "LogLevel": {
11 | "Default": "Warning"
12 | }
13 | }
14 | },
15 | "ConnectionString": "Data Source=ISB-APPS-F147; initial catalog=JwtRoleBasedAuth; integrated security=true",
16 | "JwtSecretKey": "travisgatesalksdjakljdkjsadfhkjsdfhjksdlfksdljfhsjkdlf-key",
17 | "JwtIssuer": "JwtRoleBasedAuth",
18 | "JwtAudience": "JwtRoleBasedAuth"
19 | }
20 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/BLL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/BLL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/BLL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/BLL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/DAL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/DAL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/DAL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/DAL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/ErrorLog.txt:
--------------------------------------------------------------------------------
1 | DateTime : 7/7/2018 1:59:34 PM
2 |
3 |
4 | MessageMapper not initialized. Call Initialize with appropriate configuration. If you are trying to use mapper instances through a container or otherwise, make sure you do not have any calls to the static Mapper.Map methods, and if you're using ProjectTo or UseAsDataSource extension methods, make sure you pass in the appropriate IConfigurationProvider instance.
5 |
6 | StackTrace at AutoMapper.Mapper.get_Instance() in C:\projects\automapper\src\AutoMapper\Mapper.cs:line 32
7 | at AutoMapper.Mapper.Map[TSource,TDestination](TSource source) in C:\projects\automapper\src\AutoMapper\Mapper.cs:line 92
8 | at NetCoreWebApi.Controllers.UsersController.Register(RegisterBindingModel model) in F:\VS\GitRepository\Wasalee\NetCoreWebApi\Controllers\UsersController.cs:line 65
9 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/JWTRoleBasedAuth.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/JWTRoleBasedAuth.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/JWTRoleBasedAuth.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/JWTRoleBasedAuth.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/JWTRoleBasedAuth.runtimeconfig.dev.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "additionalProbingPaths": [
4 | "C:\\Users\\muhammadmohsin\\.dotnet\\store\\|arch|\\|tfm|",
5 | "C:\\Users\\muhammadmohsin\\.nuget\\packages",
6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
7 | ]
8 | }
9 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/JWTRoleBasedAuth.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "netcoreapp2.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "2.0.0"
7 | },
8 | "configProperties": {
9 | "System.GC.Server": true
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/NetCoreWebApi.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/NetCoreWebApi.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/NetCoreWebApi.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/NetCoreWebApi.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/NetCoreWebApi.runtimeconfig.dev.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "additionalProbingPaths": [
4 | "C:\\Users\\muhammadmohsin\\.dotnet\\store\\|arch|\\|tfm|",
5 | "C:\\Users\\muhammadmohsin\\.nuget\\packages",
6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
7 | ]
8 | }
9 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/NetCoreWebApi.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "netcoreapp2.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "2.0.0"
7 | },
8 | "configProperties": {
9 | "System.GC.Server": true
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/Wasalee.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/Wasalee.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/Wasalee.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Debug/netcoreapp2.0/Wasalee.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/Wasalee.runtimeconfig.dev.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "additionalProbingPaths": [
4 | "C:\\Users\\muhammadmohsin\\.dotnet\\store\\|arch|\\|tfm|",
5 | "C:\\Users\\muhammadmohsin\\.nuget\\packages",
6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
7 | ]
8 | }
9 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/Wasalee.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "netcoreapp2.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "2.0.0"
7 | },
8 | "configProperties": {
9 | "System.GC.Server": true
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Debug/netcoreapp2.0/swagger.json:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/AutoMapper.Extensions.Microsoft.DependencyInjection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/AutoMapper.Extensions.Microsoft.DependencyInjection.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/AutoMapper.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/AutoMapper.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/BLL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/BLL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/BLL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/BLL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/DAL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/DAL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/DAL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/DAL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.CodeAnalysis.CSharp.Workspaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.CodeAnalysis.Workspaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.CodeAnalysis.Workspaces.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.EntityFrameworkCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.EntityFrameworkCore.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Caching.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Caching.Abstractions.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Caching.Memory.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Caching.Memory.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Logging.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Logging.Abstractions.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Logging.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Logging.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Options.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.Extensions.Options.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGeneration.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/NuGet.Frameworks.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/NuGet.Frameworks.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.Swagger.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.Swagger.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.SwaggerGen.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.SwaggerGen.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.SwaggerUI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.SwaggerUI.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Swashbuckle.AspNetCore.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.AttributedModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.AttributedModel.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.Convention.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.Convention.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.Hosting.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.Hosting.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.Runtime.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.TypedParts.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/System.Composition.TypedParts.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.PrecompiledViews.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.PrecompiledViews.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.PrecompiledViews.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.PrecompiledViews.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/Wasalee.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "netcoreapp2.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "2.0.0"
7 | },
8 | "configProperties": {
9 | "System.GC.Server": true
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "LogLevel": {
5 | "Default": "Debug",
6 | "System": "Information",
7 | "Microsoft": "Information"
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "Debug": {
5 | "LogLevel": {
6 | "Default": "Warning"
7 | }
8 | },
9 | "Console": {
10 | "LogLevel": {
11 | "Default": "Warning"
12 | }
13 | }
14 | },
15 | "WasaleeConnectionString": "Data Source=ISB-APPS-F147; initial catalog=Wasalee; integrated security=true",
16 | "JwtSecretKey": "travisgatesalksdjakljdkjsadfhkjsdfhjksdlfksdljfhsjkdlf-key",
17 | "JwtIssuer": "Wasalee",
18 | "JwtAudience": "Wasalee"
19 | }
20 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/dotnet-aspnet-codegenerator-design.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/PublishOutput/dotnet-aspnet-codegenerator-design.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_19848_20187911859.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:3006
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_21772_20187108040.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:19439
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_27268_20187911229.log:
--------------------------------------------------------------------------------
1 | Application startup exception: System.Data.SqlClient.SqlException (0x80131904): Login failed for user 'AXACT\ISB-APPS-F147$'.
2 | at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, Boolean applyTransientFaultHandling)
3 | at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
4 | at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
5 | at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
6 | at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
7 | at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
8 | at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
9 | at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
10 | at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
11 | at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
12 | at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
13 | at System.Data.SqlClient.SqlConnection.Open()
14 | at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected)
15 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerDatabaseCreator.<>c__DisplayClass18_0.b__0(DateTime giveUp)
16 | at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.<>c__DisplayClass12_0`2.b__0(DbContext c, TState s)
17 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
18 | at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.Execute[TState,TResult](IExecutionStrategy strategy, Func`2 operation, Func`2 verifySucceeded, TState state)
19 | at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.Execute[TState,TResult](IExecutionStrategy strategy, TState state, Func`2 operation)
20 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerDatabaseCreator.Exists(Boolean retryOnNotExists)
21 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerDatabaseCreator.Exists()
22 | at Microsoft.EntityFrameworkCore.Storage.RelationalDatabaseCreator.EnsureCreated()
23 | at NetCoreWebApi.Startup.Configure(IApplicationBuilder app, IHostingEnvironment env, DataContext dbContext) in F:\VS\GitRepository\Wasalee\NetCoreWebApi\Startup.cs:line 100
24 | --- End of stack trace from previous location where exception was thrown ---
25 | at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
26 | at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app)
27 | at Microsoft.AspNetCore.Server.IISIntegration.IISSetupFilter.<>c__DisplayClass3_0.b__0(IApplicationBuilder app)
28 | at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.b__0(IApplicationBuilder builder)
29 | at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication()
30 | ClientConnectionId:67c4259e-baee-4fd0-a7ab-0f62a09a8e42
31 | Error Number:18456,State:1,Class:14
32 | crit: Microsoft.AspNetCore.Hosting.Internal.WebHost[6]
33 | Application startup exception
34 | System.Data.SqlClient.SqlException (0x80131904): Login failed for user 'AXACT\ISB-APPS-F147$'.
35 | at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, Boolean applyTransientFaultHandling)
36 | at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
37 | at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
38 | at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
39 | at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
40 | at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
41 | at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
42 | at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
43 | at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
44 | at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
45 | at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
46 | at System.Data.SqlClient.SqlConnection.Open()
47 | at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected)
48 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerDatabaseCreator.<>c__DisplayClass18_0.b__0(DateTime giveUp)
49 | at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.<>c__DisplayClass12_0`2.b__0(DbContext c, TState s)
50 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
51 | at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.Execute[TState,TResult](IExecutionStrategy strategy, Func`2 operation, Func`2 verifySucceeded, TState state)
52 | at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.Execute[TState,TResult](IExecutionStrategy strategy, TState state, Func`2 operation)
53 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerDatabaseCreator.Exists(Boolean retryOnNotExists)
54 | at Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerDatabaseCreator.Exists()
55 | at Microsoft.EntityFrameworkCore.Storage.RelationalDatabaseCreator.EnsureCreated()
56 | at NetCoreWebApi.Startup.Configure(IApplicationBuilder app, IHostingEnvironment env, DataContext dbContext) in F:\VS\GitRepository\Wasalee\NetCoreWebApi\Startup.cs:line 100
57 | --- End of stack trace from previous location where exception was thrown ---
58 | at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
59 | at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app)
60 | at Microsoft.AspNetCore.Server.IISIntegration.IISSetupFilter.<>c__DisplayClass3_0.b__0(IApplicationBuilder app)
61 | at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.b__0(IApplicationBuilder builder)
62 | at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication()
63 | ClientConnectionId:67c4259e-baee-4fd0-a7ab-0f62a09a8e42
64 | Error Number:18456,State:1,Class:14
65 | Hosting environment: Production
66 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
67 | Now listening on: http://localhost:9423
68 | Application started. Press Ctrl+C to shut down.
69 | Application is shutting down...
70 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_34836_201871311494.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:17315
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_35688_2018712115637.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:10336
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_36952_2018713101826.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:17411
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_40220_20187145344.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:20694
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_42684_201871210275.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:29300
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_42704_201871310514.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:24004
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/logs/stdout_7560_2018712784.log:
--------------------------------------------------------------------------------
1 | Hosting environment: Production
2 | Content root path: F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\PublishOutput
3 | Now listening on: http://localhost:28531
4 | Application started. Press Ctrl+C to shut down.
5 | Application is shutting down...
6 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/PublishOutput/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/BLL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/netcoreapp2.0/BLL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/BLL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/netcoreapp2.0/BLL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/DAL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/netcoreapp2.0/DAL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/DAL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/netcoreapp2.0/DAL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/Wasalee.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/netcoreapp2.0/Wasalee.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/Wasalee.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/bin/Release/netcoreapp2.0/Wasalee.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/Wasalee.runtimeconfig.dev.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "additionalProbingPaths": [
4 | "C:\\Users\\muhammadmohsin\\.dotnet\\store\\|arch|\\|tfm|",
5 | "C:\\Users\\muhammadmohsin\\.nuget\\packages",
6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
7 | ]
8 | }
9 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/bin/Release/netcoreapp2.0/Wasalee.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "netcoreapp2.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "2.0.0"
7 | },
8 | "configProperties": {
9 | "System.GC.Server": true
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | using System;
12 | using System.Reflection;
13 |
14 | [assembly: System.Reflection.AssemblyCompanyAttribute("JWTRoleBasedAuth")]
15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16 | [assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
19 | [assembly: System.Reflection.AssemblyProductAttribute("JWTRoleBasedAuth")]
20 | [assembly: System.Reflection.AssemblyTitleAttribute("JWTRoleBasedAuth")]
21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
22 |
23 | // Generated by the MSBuild WriteCodeFragment class.
24 |
25 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | e6e9fabe0d05a001d00190748c40fd34956b9383
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.csproj.CoreCompileInputs.cache:
--------------------------------------------------------------------------------
1 | b557dd56c92ad46ae74d8cdfb9ec2ac7da922fc9
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\obj\Debug\netcoreapp2.0\JWTRoleBasedAuth.csproj.CoreCompileInputs.cache
2 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\obj\Debug\netcoreapp2.0\JWTRoleBasedAuth.AssemblyInfoInputs.cache
3 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\obj\Debug\netcoreapp2.0\JWTRoleBasedAuth.AssemblyInfo.cs
4 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\bin\Debug\netcoreapp2.0\JWTRoleBasedAuth.deps.json
5 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\bin\Debug\netcoreapp2.0\JWTRoleBasedAuth.runtimeconfig.json
6 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\bin\Debug\netcoreapp2.0\JWTRoleBasedAuth.runtimeconfig.dev.json
7 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\bin\Debug\netcoreapp2.0\JWTRoleBasedAuth.dll
8 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\bin\Debug\netcoreapp2.0\JWTRoleBasedAuth.pdb
9 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\obj\Debug\netcoreapp2.0\JWTRoleBasedAuth.dll
10 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\obj\Debug\netcoreapp2.0\JWTRoleBasedAuth.pdb
11 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\obj\Debug\netcoreapp2.0\JWTRoleBasedAuth.csprojResolveAssemblyReference.cache
12 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.csprojResolveAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.csprojResolveAssemblyReference.cache
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/JWTRoleBasedAuth.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | using System;
12 | using System.Reflection;
13 |
14 | [assembly: System.Reflection.AssemblyCompanyAttribute("NetCoreWebApi")]
15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16 | [assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
19 | [assembly: System.Reflection.AssemblyProductAttribute("NetCoreWebApi")]
20 | [assembly: System.Reflection.AssemblyTitleAttribute("NetCoreWebApi")]
21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
22 |
23 | // Generated by the MSBuild WriteCodeFragment class.
24 |
25 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | 42c700eeadc3b3dd6a8bc7f1816c077bf531e7a6
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.csproj.CoreCompileInputs.cache:
--------------------------------------------------------------------------------
1 | 8b107750b4555c87fcd959ed44a9c4dcb88348eb
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\NetCoreWebApi.deps.json
2 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\NetCoreWebApi.runtimeconfig.json
3 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\NetCoreWebApi.runtimeconfig.dev.json
4 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\NetCoreWebApi.dll
5 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\NetCoreWebApi.pdb
6 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\NetCoreWebApi.csprojResolveAssemblyReference.cache
7 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\NetCoreWebApi.csproj.CoreCompileInputs.cache
8 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\NetCoreWebApi.AssemblyInfoInputs.cache
9 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\NetCoreWebApi.AssemblyInfo.cs
10 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\NetCoreWebApi.dll
11 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\NetCoreWebApi.pdb
12 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.csprojResolveAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.csprojResolveAssemblyReference.cache
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/NetCoreWebApi.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | using System;
12 | using System.Reflection;
13 |
14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Wasalee")]
15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16 | [assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
19 | [assembly: System.Reflection.AssemblyProductAttribute("Wasalee")]
20 | [assembly: System.Reflection.AssemblyTitleAttribute("Wasalee")]
21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
22 |
23 | // Generated by the MSBuild WriteCodeFragment class.
24 |
25 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | ee7bfe8d6c06993ce5a7713aa577770c8ab98a13
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.csproj.CopyComplete:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.csproj.CopyComplete
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.csproj.CoreCompileInputs.cache:
--------------------------------------------------------------------------------
1 | 1e1aa59586680ef3ef650d76e379587c4d343c44
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.deps.json
2 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.runtimeconfig.json
3 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.runtimeconfig.dev.json
4 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.dll
5 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.pdb
6 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.csprojResolveAssemblyReference.cache
7 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.csproj.CoreCompileInputs.cache
8 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.AssemblyInfoInputs.cache
9 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.AssemblyInfo.cs
10 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.dll
11 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.pdb
12 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\DAL.dll
13 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\bin\Debug\netcoreapp2.0\DAL.pdb
14 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.csprojResolveAssemblyReference.cache
15 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.csproj.CoreCompileInputs.cache
16 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.AssemblyInfoInputs.cache
17 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.AssemblyInfo.cs
18 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.deps.json
19 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.runtimeconfig.json
20 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.runtimeconfig.dev.json
21 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.dll
22 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\BLL.dll
23 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\DAL.dll
24 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\BLL.pdb
25 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\DAL.pdb
26 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Debug\netcoreapp2.0\Wasalee.pdb
27 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.dll
28 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Debug\netcoreapp2.0\Wasalee.pdb
29 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.csprojResolveAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.csprojResolveAssemblyReference.cache
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Debug/netcoreapp2.0/Wasalee.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/JWTRoleBasedAuth.csproj.nuget.cache:
--------------------------------------------------------------------------------
1 | {
2 | "version": 1,
3 | "dgSpecHash": "JjFVhi8Wz1WGXIPm7ehb6zlSxpWPOiGJXTCBTnE4x0Onb9AIXq1w/1F9fLCwq+iz0JPUwf2Z5Td+K5q864iIIw==",
4 | "success": true
5 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/JWTRoleBasedAuth.csproj.nuget.g.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | True
5 | NuGet
6 | F:\VS\GitRepository\JWT Role Based Auth with Custom Tables Identity\NetCoreWebApi\obj\project.assets.json
7 | $(UserProfile)\.nuget\packages\
8 | C:\Users\muhammadmohsin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
9 | PackageReference
10 | 4.3.0
11 |
12 |
13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/JWTRoleBasedAuth.csproj.nuget.g.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/NetCoreWebApi.csproj.nuget.cache:
--------------------------------------------------------------------------------
1 | {
2 | "version": 1,
3 | "dgSpecHash": "/bsJlJ+BWXxX/Rb0X4liozNOVhqGpqHiXAoLpIfudGQJC67L/IMrHtGIriWLiHpH7aXc26VGxhapyPHeJMxV/g==",
4 | "success": true
5 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/NetCoreWebApi.csproj.nuget.g.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | True
5 | NuGet
6 | F:\VS\GitRepository\NetCoreWebApi\NetCoreWebApi\obj\project.assets.json
7 | $(UserProfile)\.nuget\packages\
8 | C:\Users\muhammadmohsin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
9 | PackageReference
10 | 4.3.0
11 |
12 |
13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/NetCoreWebApi.csproj.nuget.g.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/AutoMapper.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/AutoMapper.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/BLL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/BLL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/BLL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/BLL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/DAL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/DAL.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/DAL.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/DAL.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Caching.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Caching.Abstractions.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Caching.Memory.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Caching.Memory.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Logging.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Logging.Abstractions.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Logging.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Logging.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Options.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.Extensions.Options.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/NuGet.Frameworks.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/NuGet.Frameworks.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Swashbuckle.AspNetCore.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.AttributedModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.AttributedModel.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.Convention.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.Convention.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.Hosting.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.Hosting.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.Runtime.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.TypedParts.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/System.Composition.TypedParts.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.PrecompiledViews.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.PrecompiledViews.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.PrecompiledViews.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.PrecompiledViews.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/Wasalee.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "netcoreapp2.0",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "2.0.0"
7 | },
8 | "configProperties": {
9 | "System.GC.Server": true
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "LogLevel": {
5 | "Default": "Debug",
6 | "System": "Information",
7 | "Microsoft": "Information"
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "Debug": {
5 | "LogLevel": {
6 | "Default": "Warning"
7 | }
8 | },
9 | "Console": {
10 | "LogLevel": {
11 | "Default": "Warning"
12 | }
13 | }
14 | },
15 | "WasaleeConnectionString": "Data Source=ISB-APPS-F147; initial catalog=Wasalee; integrated security=true",
16 | "JwtSecretKey": "travisgatesalksdjakljdkjsadfhkjsdfhjksdlfksdljfhsjkdlf-key",
17 | "JwtIssuer": "Wasalee",
18 | "JwtAudience": "Wasalee"
19 | }
20 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/swagger.json:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/PubTmp/Out/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | using System;
12 | using System.Reflection;
13 |
14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Wasalee")]
15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
16 | [assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")]
17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
19 | [assembly: System.Reflection.AssemblyProductAttribute("Wasalee")]
20 | [assembly: System.Reflection.AssemblyTitleAttribute("Wasalee")]
21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
22 |
23 | // Generated by the MSBuild WriteCodeFragment class.
24 |
25 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | b976cfb6628a523eaf05d734e23f5c749b39440e
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.PrecompiledViews.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.PrecompiledViews.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.PrecompiledViews.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.PrecompiledViews.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.csproj.CopyComplete:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.csproj.CopyComplete
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.csproj.CoreCompileInputs.cache:
--------------------------------------------------------------------------------
1 | 2fb278ba6e07e0101b51d0735c9a4493399d51c9
2 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\Wasalee.deps.json
2 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\Wasalee.runtimeconfig.json
3 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\Wasalee.runtimeconfig.dev.json
4 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\Wasalee.dll
5 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\Wasalee.pdb
6 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\BLL.dll
7 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\DAL.dll
8 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\BLL.pdb
9 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\bin\Release\netcoreapp2.0\DAL.pdb
10 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Release\netcoreapp2.0\Wasalee.csprojResolveAssemblyReference.cache
11 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Release\netcoreapp2.0\Wasalee.csproj.CoreCompileInputs.cache
12 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Release\netcoreapp2.0\Wasalee.AssemblyInfoInputs.cache
13 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Release\netcoreapp2.0\Wasalee.AssemblyInfo.cs
14 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Release\netcoreapp2.0\Wasalee.dll
15 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\Release\netcoreapp2.0\Wasalee.pdb
16 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.csprojResolveAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.csprojResolveAssemblyReference.cache
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.dll
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohsin91/NetCore2JWTRoleBasedAuth/ade33695493fe2f81c075fa7fe70f8063dde58af/NetCoreWebApi/obj/Release/netcoreapp2.0/Wasalee.pdb
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Release/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.viewcompilation.rsp:
--------------------------------------------------------------------------------
1 | F:\VS\GitRepository\Wasalee\NetCoreWebApi
2 | --output-path=obj\Release\netcoreapp2.0\
3 | --application-name=Wasalee
4 | --content-root=F:\VS\GitRepository\Wasalee\NetCoreWebApi
5 | --file=F:\VS\GitRepository\Wasalee\NetCoreWebApi\Views\Shared\Error.cshtml
6 | --file=F:\VS\GitRepository\Wasalee\NetCoreWebApi\Views\_ViewStart.cshtml
7 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Wasalee.csproj.nuget.cache:
--------------------------------------------------------------------------------
1 | {
2 | "version": 1,
3 | "dgSpecHash": "/j/70jjxDF4riruJ2A2W8IS7OiklyGETLVSP6hiNAUqSjeVGOVLx3hqGAzZ7hwajZMT3SIHVT0PCSqeSTOSD3Q==",
4 | "success": true
5 | }
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Wasalee.csproj.nuget.g.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | True
5 | NuGet
6 | F:\VS\GitRepository\Wasalee\NetCoreWebApi\obj\project.assets.json
7 | $(UserProfile)\.nuget\packages\
8 | C:\Users\muhammadmohsin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
9 | PackageReference
10 | 4.3.0
11 |
12 |
13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/NetCoreWebApi/obj/Wasalee.csproj.nuget.g.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/NetCoreWebApi/swagger.json:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # NetCore2JWTRoleBasedAuth
2 |
3 | This code is an implementation of JWT Role Base Authorization with Custom Tables.
4 |
5 | We are using EntityFramework with Sql. In order to use MySql, you just have to use options.UseMySql in ConfigureServices of Startup.cs
6 | instead of options.UseSql.
7 |
8 | Use Cases:
9 |
10 | 1. When a user logs in with valid credentials, a token is returned.
11 | 2. When user tries to access an Api controller action decorated with [Authorize] with an invalid token or no token at all. It will return
12 | 401 Unauthorized status code.
13 | 3. When user tries to access an action whom access is only provided to admin(with a valid token though), it will return a 403 Forbidden
14 | status code.
15 |
--------------------------------------------------------------------------------