Skip to content

Commit 25de3eb

Browse files
authored
Merge pull request #8 from foyzulkarim/poc/01-rbac
Poc/01 rbac
2 parents ea09dff + 611afa9 commit 25de3eb

File tree

75 files changed

+3739
-511
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+3739
-511
lines changed

.vscode/launch.json

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
// Use IntelliSense to find out which attributes exist for C# debugging
3-
// Use hover for the description of the existing attributes
4-
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5-
"version": "0.2.0",
6-
"configurations": [
2+
// Use IntelliSense to find out which attributes exist for C# debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5+
"version": "0.2.0",
6+
"configurations": [
77
{
8-
"name": ".NET Core Launch (web)",
8+
"name": ".NET Core Launch (auth)",
99
"type": "coreclr",
1010
"request": "launch",
1111
"preLaunchTask": "build",
@@ -26,6 +26,28 @@
2626
"/Views": "${workspaceFolder}/Views"
2727
}
2828
},
29+
{
30+
"name": ".NET Core Launch (webapp)",
31+
"type": "coreclr",
32+
"request": "launch",
33+
"preLaunchTask": "build",
34+
// If you have changed target frameworks, make sure to update the program path.
35+
"program": "${workspaceFolder}/server/WebApplication2/WebApplication2/bin/Debug/netcoreapp3.1/WebApplication2.dll",
36+
"args": [],
37+
"cwd": "${workspaceFolder}/server/WebApplication2/WebApplication2",
38+
"stopAtEntry": false,
39+
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
40+
"serverReadyAction": {
41+
"action": "openExternally",
42+
"pattern": "^\\s*Now listening on:\\s+(https?://\\S+)"
43+
},
44+
"env": {
45+
"ASPNETCORE_ENVIRONMENT": "Development"
46+
},
47+
"sourceFileMap": {
48+
"/Views": "${workspaceFolder}/Views"
49+
}
50+
},
2951
{
3052
"name": ".NET Core Attach",
3153
"type": "coreclr",

0 commit comments

Comments
 (0)