|
10 | 10 | "customExecutable": true, |
11 | 11 | "tasks": [ |
12 | 12 | { |
13 | | - "help": "The <c>dotnet ef database drop</c> command is used to drop the database.", |
| 13 | + "help": "The <c>dotnet-ef database drop</c> command is used to drop the database.", |
14 | 14 | "postfix": "DatabaseDrop", |
15 | | - "definiteArgument": "ef database drop", |
| 15 | + "definiteArgument": "database drop", |
16 | 16 | "settingsClass": { |
17 | 17 | "baseClass": "EntityFrameworkSettings", |
18 | 18 | "properties": [ |
|
32 | 32 | } |
33 | 33 | }, |
34 | 34 | { |
35 | | - "help": "The <c>dotnet ef database update</c> command is used to update the database to the last migration or to a specified migration.", |
| 35 | + "help": "The <c>dotnet-ef database update</c> command is used to update the database to the last migration or to a specified migration.", |
36 | 36 | "postfix": "DatabaseUpdate", |
37 | | - "definiteArgument": "ef database update", |
| 37 | + "definiteArgument": "database update", |
38 | 38 | "settingsClass": { |
39 | 39 | "baseClass": "EntityFrameworkSettings", |
40 | 40 | "properties": [ |
|
54 | 54 | } |
55 | 55 | }, |
56 | 56 | { |
57 | | - "help": "The <c>dotnet ef dbcontext info</c> command is used to get information about a <c>DbContext</c> type.", |
| 57 | + "help": "The <c>dotnet-ef dbcontext info</c> command is used to get information about a <c>DbContext</c> type.", |
58 | 58 | "postfix": "DbContextInfo", |
59 | | - "definiteArgument": "ef dbcontext info", |
| 59 | + "definiteArgument": "dbcontext info", |
60 | 60 | "settingsClass": { |
61 | 61 | "baseClass": "EntityFrameworkSettings" |
62 | 62 | } |
63 | 63 | }, |
64 | 64 | { |
65 | | - "help": "The <c>dotnet ef dbcontext list</c> command is used to list available <c>DbContext</c> types.", |
| 65 | + "help": "The <c>dotnet-ef dbcontext list</c> command is used to list available <c>DbContext</c> types.", |
66 | 66 | "postfix": "DbContextList", |
67 | | - "definiteArgument": "ef dbcontext list", |
| 67 | + "definiteArgument": "dbcontext list", |
68 | 68 | "settingsClass": { |
69 | 69 | "baseClass": "EntityFrameworkSettings" |
70 | 70 | } |
71 | 71 | }, |
72 | 72 | { |
73 | | - "help": "The <c>dotnet ef dbcontext scaffold</c> command is used to generate code for a <c>DbContext</c> and entity types for a database. In order for this command to generate an entity type, the database table must have a primary key.", |
| 73 | + "help": "The <c>dotnet-ef dbcontext scaffold</c> command is used to generate code for a <c>DbContext</c> and entity types for a database. In order for this command to generate an entity type, the database table must have a primary key.", |
74 | 74 | "postfix": "DbContextScaffold", |
75 | 75 | "definiteArgument": "ef dbcontext scaffold", |
76 | 76 | "settingsClass": { |
|
164 | 164 | } |
165 | 165 | }, |
166 | 166 | { |
167 | | - "help": "The <c>dotnet ef dbcontext script</c> command is used to generate a SQL script from the <c>DbContext</c>, bypassing any migrations.", |
| 167 | + "help": "The <c>dotnet-ef dbcontext script</c> command is used to generate a SQL script from the <c>DbContext</c>, bypassing any migrations.", |
168 | 168 | "postfix": "DbContextScript", |
169 | | - "definiteArgument": "ef dbcontext script", |
| 169 | + "definiteArgument": "dbcontext script", |
170 | 170 | "settingsClass": { |
171 | 171 | "baseClass": "EntityFrameworkSettings", |
172 | 172 | "properties": [ |
|
180 | 180 | } |
181 | 181 | }, |
182 | 182 | { |
183 | | - "help": "The <c>dotnet ef migrations add</c> command is used to add a new migration.", |
| 183 | + "help": "The <c>dotnet-ef migrations add</c> command is used to add a new migration.", |
184 | 184 | "postfix": "MigrationsAdd", |
185 | | - "definiteArgument": "ef migrations add", |
| 185 | + "definiteArgument": "migrations add", |
186 | 186 | "settingsClass": { |
187 | 187 | "baseClass": "EntityFrameworkSettings", |
188 | 188 | "properties": [ |
|
208 | 208 | } |
209 | 209 | }, |
210 | 210 | { |
211 | | - "help": "The <c>dotnet ef migrations list</c> command is used to list available migrations.", |
| 211 | + "help": "The <c>dotnet-ef migrations list</c> command is used to list available migrations.", |
212 | 212 | "postfix": "MigrationsList", |
213 | | - "definiteArgument": "ef migrations list", |
| 213 | + "definiteArgument": "migrations list", |
214 | 214 | "settingsClass": { |
215 | 215 | "baseClass": "EntityFrameworkSettings", |
216 | 216 | "properties": [ |
|
230 | 230 | } |
231 | 231 | }, |
232 | 232 | { |
233 | | - "help": "The <c>dotnet ef migrations remove</c> command is used to remove the last migration (rolls back the code changes that were done for the migration).", |
| 233 | + "help": "The <c>dotnet-ef migrations remove</c> command is used to remove the last migration (rolls back the code changes that were done for the migration).", |
234 | 234 | "postfix": "MigrationsRemove", |
235 | | - "definiteArgument": "ef migrations remove", |
| 235 | + "definiteArgument": "migrations remove", |
236 | 236 | "settingsClass": { |
237 | 237 | "baseClass": "EntityFrameworkSettings", |
238 | 238 | "properties": [ |
|
246 | 246 | } |
247 | 247 | }, |
248 | 248 | { |
249 | | - "help": "The <c>dotnet ef migrations bundle</c> command is used to create a bundle.", |
| 249 | + "help": "The <c>dotnet-ef migrations bundle</c> command is used to create a bundle.", |
250 | 250 | "postfix": "MigrationsBundle", |
251 | | - "definiteArgument": "ef migrations bundle", |
| 251 | + "definiteArgument": "migrations bundle", |
252 | 252 | "settingsClass": { |
253 | 253 | "baseClass": "EntityFrameworkSettings", |
254 | 254 | "properties": [ |
|
280 | 280 | } |
281 | 281 | }, |
282 | 282 | { |
283 | | - "help": "The <c>dotnet ef migrations script</c> command is used to generate a SQL script from migrations.", |
| 283 | + "help": "The <c>dotnet-ef migrations script</c> command is used to generate a SQL script from migrations.", |
284 | 284 | "postfix": "MigrationsScript", |
285 | | - "definiteArgument": "ef migrations script", |
| 285 | + "definiteArgument": "migrations script", |
286 | 286 | "settingsClass": { |
287 | 287 | "baseClass": "EntityFrameworkSettings", |
288 | 288 | "properties": [ |
|
0 commit comments