Skip to content

Commit bb3b6a0

Browse files
authored
fix(tools): EntityFrameworkTasks definite argument (#1420)
1 parent f419d40 commit bb3b6a0

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

source/Nuke.Common/Tools/EntityFramework/EntityFramework.json

+21-21
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"customExecutable": true,
1111
"tasks": [
1212
{
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.",
1414
"postfix": "DatabaseDrop",
15-
"definiteArgument": "ef database drop",
15+
"definiteArgument": "database drop",
1616
"settingsClass": {
1717
"baseClass": "EntityFrameworkSettings",
1818
"properties": [
@@ -32,9 +32,9 @@
3232
}
3333
},
3434
{
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.",
3636
"postfix": "DatabaseUpdate",
37-
"definiteArgument": "ef database update",
37+
"definiteArgument": "database update",
3838
"settingsClass": {
3939
"baseClass": "EntityFrameworkSettings",
4040
"properties": [
@@ -54,23 +54,23 @@
5454
}
5555
},
5656
{
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.",
5858
"postfix": "DbContextInfo",
59-
"definiteArgument": "ef dbcontext info",
59+
"definiteArgument": "dbcontext info",
6060
"settingsClass": {
6161
"baseClass": "EntityFrameworkSettings"
6262
}
6363
},
6464
{
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.",
6666
"postfix": "DbContextList",
67-
"definiteArgument": "ef dbcontext list",
67+
"definiteArgument": "dbcontext list",
6868
"settingsClass": {
6969
"baseClass": "EntityFrameworkSettings"
7070
}
7171
},
7272
{
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.",
7474
"postfix": "DbContextScaffold",
7575
"definiteArgument": "ef dbcontext scaffold",
7676
"settingsClass": {
@@ -164,9 +164,9 @@
164164
}
165165
},
166166
{
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.",
168168
"postfix": "DbContextScript",
169-
"definiteArgument": "ef dbcontext script",
169+
"definiteArgument": "dbcontext script",
170170
"settingsClass": {
171171
"baseClass": "EntityFrameworkSettings",
172172
"properties": [
@@ -180,9 +180,9 @@
180180
}
181181
},
182182
{
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.",
184184
"postfix": "MigrationsAdd",
185-
"definiteArgument": "ef migrations add",
185+
"definiteArgument": "migrations add",
186186
"settingsClass": {
187187
"baseClass": "EntityFrameworkSettings",
188188
"properties": [
@@ -208,9 +208,9 @@
208208
}
209209
},
210210
{
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.",
212212
"postfix": "MigrationsList",
213-
"definiteArgument": "ef migrations list",
213+
"definiteArgument": "migrations list",
214214
"settingsClass": {
215215
"baseClass": "EntityFrameworkSettings",
216216
"properties": [
@@ -230,9 +230,9 @@
230230
}
231231
},
232232
{
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).",
234234
"postfix": "MigrationsRemove",
235-
"definiteArgument": "ef migrations remove",
235+
"definiteArgument": "migrations remove",
236236
"settingsClass": {
237237
"baseClass": "EntityFrameworkSettings",
238238
"properties": [
@@ -246,9 +246,9 @@
246246
}
247247
},
248248
{
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.",
250250
"postfix": "MigrationsBundle",
251-
"definiteArgument": "ef migrations bundle",
251+
"definiteArgument": "migrations bundle",
252252
"settingsClass": {
253253
"baseClass": "EntityFrameworkSettings",
254254
"properties": [
@@ -280,9 +280,9 @@
280280
}
281281
},
282282
{
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.",
284284
"postfix": "MigrationsScript",
285-
"definiteArgument": "ef migrations script",
285+
"definiteArgument": "migrations script",
286286
"settingsClass": {
287287
"baseClass": "EntityFrameworkSettings",
288288
"properties": [

0 commit comments

Comments
 (0)