Skip to content

Commit c47b048

Browse files
committed
Merge branch 'release/V4.0.0'
2 parents c5fc213 + e276333 commit c47b048

File tree

591 files changed

+7106
-115323
lines changed

Some content is hidden

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

591 files changed

+7106
-115323
lines changed

.vscode/tasks.json

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,86 @@
116116
"Release"
117117
],
118118
"problemMatcher": "$msCompile"
119+
},
120+
{
121+
"label": "Database Add migration",
122+
"command": "dotnet",
123+
"type": "process",
124+
"args": [
125+
"ef",
126+
"migrations",
127+
"add",
128+
"${input:migrationName}",
129+
"--project",
130+
"DotNet\\TheBIADevCompany.BIADemo.Infrastructure.Data",
131+
"-s",
132+
"DotNet\\TheBIADevCompany.BIADemo.Presentation.Api",
133+
"-c",
134+
"DataContext"
135+
],
136+
"problemMatcher": []
137+
},
138+
{
139+
"label": "Database Udpate",
140+
"command": "dotnet",
141+
"type": "process",
142+
"args": [
143+
"ef",
144+
"database",
145+
"update",
146+
"-s",
147+
"DotNet\\TheBIADevCompany.BIADemo.Presentation.Api",
148+
"-c",
149+
"DataContext"
150+
],
151+
"problemMatcher": []
152+
},
153+
{
154+
"label": "Database Rollback",
155+
"command": "dotnet",
156+
"type": "process",
157+
"args": [
158+
"ef",
159+
"database",
160+
"update",
161+
"${input:migrationTarget}",
162+
"-s",
163+
"DotNet\\TheBIADevCompany.BIADemo.Presentation.Api",
164+
"-c",
165+
"DataContext"
166+
],
167+
"problemMatcher": []
168+
},
169+
{
170+
"label": "Database Remove last migration",
171+
"command": "dotnet",
172+
"type": "process",
173+
"args": [
174+
"ef",
175+
"migrations",
176+
"remove",
177+
"--project",
178+
"DotNet\\TheBIADevCompany.BIADemo.Infrastructure.Data",
179+
"-s",
180+
"DotNet\\TheBIADevCompany.BIADemo.Presentation.Api",
181+
"-c",
182+
"DataContext"
183+
],
184+
"problemMatcher": []
185+
}
186+
],
187+
"inputs": [
188+
{
189+
"id": "migrationName",
190+
"description": "Migration Name:",
191+
"default": "Initial",
192+
"type": "promptString"
193+
},
194+
{
195+
"id": "migrationTarget",
196+
"description": "Migration Target:",
197+
"default": "",
198+
"type": "promptString"
119199
}
120200
]
121201
}

Angular/.vscode/launch.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,28 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8+
"name": "Angular",
89
"type": "msedge",
910
"request": "launch",
10-
"name": "Launch Edge against localhost",
1111
"url": "http://localhost:4200",
12+
"webRoot": "${workspaceFolder}",
13+
"sourceMaps": true
14+
},
15+
{
16+
"name": "Angular + npm start",
17+
"type": "msedge",
18+
"request": "launch",
19+
"preLaunchTask": "angular: start",
20+
"url": "http://localhost:4200",
21+
"webRoot": "${workspaceFolder}",
22+
"sourceMaps": true
23+
},
24+
{
25+
"type": "chrome",
26+
"request": "attach",
27+
"name": "Attach to Chrome",
28+
"port": 9222,
29+
"urlFilter": "http://localhost:4200/*",
1230
"webRoot": "${workspaceFolder}"
1331
}
1432
]

Angular/.vscode/tasks.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "angular: start",
6+
"type": "npm",
7+
"script": "start",
8+
"isBackground": true,
9+
"problemMatcher": {
10+
"owner": "typescript",
11+
"pattern": "$tsc",
12+
"background": {
13+
"activeOnStart": true,
14+
"beginsPattern": {
15+
"regexp": "(.*?)"
16+
},
17+
"endsPattern": {
18+
"regexp": "bundle generation complete"
19+
}
20+
}
21+
}
22+
},
23+
{
24+
"label": "angular: test",
25+
"type": "npm",
26+
"script": "test",
27+
"isBackground": true,
28+
"problemMatcher": {
29+
"owner": "typescript",
30+
"pattern": "$tsc",
31+
"background": {
32+
"activeOnStart": true,
33+
"beginsPattern": {
34+
"regexp": "(.*?)"
35+
},
36+
"endsPattern": {
37+
"regexp": "bundle generation complete"
38+
}
39+
}
40+
}
41+
}
42+
]
43+
}

Angular/BIAToolKit.json

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"Type": "CRUD",
55
"FeatureName": "Plane",
66
"FeatureNamePlural": "Planes",
7+
"DisplayItemName": "msn",
78
"ZipName": "crud.zip",
89
"Contains": {
910
"Include": ["src\\app\\features\\planes\\*"],
@@ -22,6 +23,7 @@
2223
"Type": "CRUD",
2324
"FeatureName": "Engine",
2425
"FeatureNamePlural": "Engines",
26+
"DisplayItemName": "reference",
2527
"ZipName": "crud-parent.zip",
2628
"Contains": {
2729
"Include": ["src\\app\\features\\planes\\children\\engines\\*"],
@@ -119,19 +121,26 @@
119121
],
120122

121123
"ReplaceInFiles": [
122-
{
123-
"RegexMatch": "'([^']*)'",
124-
"Pattern": "aircraft-maintenance-companies/children/",
125-
"NoParentValue": "",
126-
"WithParentValue": "{ParentRelativePathLinux}/children/"
127-
},
128124
{
129125
"RegexMatch": "(\\.\\./){6}shared/bia-shared/.*\\.(html|scss)\\'",
130126
"Pattern": "'../../../../../../",
131127
"NoParentValue": "'../../../../",
132128
"WithParentAddByDeeperLevel": "../../"
133129
}
134130
]
131+
},
132+
{
133+
"RootPath": "src\\app\\",
134+
"InitialDeepLevel": 0,
135+
136+
"ReplaceInFiles": [
137+
{
138+
"RegexMatch": "'([^']*)'",
139+
"Pattern": "features/aircraft-maintenance-companies/children/",
140+
"NoParentValue": "features/",
141+
"WithParentValue": "{ParentRelativePathLinux}/children/"
142+
}
143+
]
135144
}
136145
]
137146
}

Angular/package-backup.txt

Lines changed: 0 additions & 89 deletions
This file was deleted.

0 commit comments

Comments
 (0)