Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use dotnetcli #1922

Merged
merged 8 commits into from
Nov 19, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update index.md
  • Loading branch information
Youssef1313 committed Nov 15, 2019
commit bc558040bf590f201e7c7c77a5d65d26560c27b6
8 changes: 4 additions & 4 deletions entity-framework/core/get-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Install the following software:

## [.NET Core CLI](#tab/netcore-cli)

``` Console
```dotnetcli
dotnet new console -o EFGetStarted
cd EFGetStarted
```
Expand All @@ -53,7 +53,7 @@ To install EF Core, you install the package for the EF Core database provider(s)

## [.NET Core CLI](#tab/netcore-cli)

``` Console
```dotnetcli
dotnet add package Microsoft.EntityFrameworkCore.Sqlite
```

Expand Down Expand Up @@ -100,7 +100,7 @@ The following steps use [migrations](xref:core/managing-schemas/migrations/index

* Run the following commands:

``` Console
```dotnetcli
dotnet tool install --global dotnet-ef
dotnet add package Microsoft.EntityFrameworkCore.Design
dotnet ef migrations add InitialCreate
Expand Down Expand Up @@ -133,7 +133,7 @@ The following steps use [migrations](xref:core/managing-schemas/migrations/index

## [.NET Core CLI](#tab/netcore-cli)

``` Console
```dotnetcli
dotnet run
```

Expand Down