Skip to content

Commit 0a924dd

Browse files
committed
Update ef-tools version
1 parent 1687e66 commit 0a924dd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-ef": {
6-
"version": "7.0.8",
6+
"version": "8.0.2",
77
"commands": [
88
"dotnet-ef"
99
]

src/ASPNETCoreIdentitySample.DataLayer.MSSQL/_01-add_migrations.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c_%%a_%%b)
22
For /f "tokens=1-2 delims=/:" %%a in ("%TIME: =0%") do (set mytime=%%a%%b)
3-
dotnet tool update --global dotnet-ef --version 7.0.8
3+
dotnet tool update --global dotnet-ef --version 8.0.2
44
dotnet tool restore
55
dotnet build
66
dotnet ef --verbose migrations --startup-project ../ASPNETCoreIdentitySample/ add V%mydate%_%mytime% --context MsSqlDbContext

src/ASPNETCoreIdentitySample.DataLayer.MSSQL/_02-update_db.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dotnet tool update --global dotnet-ef --version 7.0.8
1+
dotnet tool update --global dotnet-ef --version 8.0.2
22
dotnet tool restore
33
dotnet build
44
dotnet ef --verbose --startup-project ../ASPNETCoreIdentitySample/ database update --context MsSqlDbContext

src/ASPNETCoreIdentitySample.DataLayer.SQLite/_01-add_migrations.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c_%%a_%%b)
22
For /f "tokens=1-2 delims=/:" %%a in ("%TIME: =0%") do (set mytime=%%a%%b)
3-
dotnet tool update --global dotnet-ef --version 7.0.8
3+
dotnet tool update --global dotnet-ef --version 8.0.2
44
dotnet tool restore
55
dotnet build
66
dotnet ef migrations --startup-project ../ASPNETCoreIdentitySample/ add V%mydate%_%mytime% --context SQLiteDbContext

src/ASPNETCoreIdentitySample.DataLayer.SQLite/_02-update_db.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dotnet tool update --global dotnet-ef --version 7.0.8
1+
dotnet tool update --global dotnet-ef --version 8.0.2
22
dotnet tool restore
33
dotnet build
44
dotnet ef --startup-project ../ASPNETCoreIdentitySample/ database update --context SQLiteDbContext

0 commit comments

Comments
 (0)