Skip to content

Commit dd7d52d

Browse files
authored
Merge pull request #34778 from dotnet/main
2 parents 9d598de + 62be13e commit dd7d52d

File tree

2 files changed

+27
-3
lines changed
  • aspnetcore

2 files changed

+27
-3
lines changed

aspnetcore/blazor/tutorials/movie-database-app/part-2.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,18 @@ dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
137137
> [!NOTE]
138138
> The preceding commands are .NET CLI commands, and .NET CLI commands are executed when entered at a [PowerShell](/powershell/) prompt, which is the default command shell of the VS Code **Terminal**.
139139
140+
Open the app's project file (`BlazorWebAppMovies.csproj`). Drop the `<IncludeAssets>` and `<PrivateAssets>` from the `Microsoft.EntityFrameworkCore.Design` package reference. In the following example, the `{VERSION}` placeholder is the package's version and remains unchanged:
141+
142+
```diff
143+
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="{VERSION}">
144+
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
145+
- <PrivateAssets>all</PrivateAssets>
146+
- </PackageReference>
147+
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="{VERSION}" />
148+
```
149+
150+
Save the project file.
151+
140152
The preceding commands add:
141153

142154
* [Command-line interface (CLI) tools for EF Core](/ef/core/miscellaneous/cli/dotnet).
@@ -177,6 +189,18 @@ dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
177189
> [!IMPORTANT]
178190
> After the first eight commands execute, make sure that you press <kbd>Enter</kbd> on the keyboard to execute the last command.
179191
192+
Open the app's project file (`BlazorWebAppMovies.csproj`). Drop the `<IncludeAssets>` and `<PrivateAssets>` from the `Microsoft.EntityFrameworkCore.Design` package reference. In the following example, the `{VERSION}` placeholder is the package's version and remains unchanged:
193+
194+
```diff
195+
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="{VERSION}">
196+
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
197+
- <PrivateAssets>all</PrivateAssets>
198+
- </PackageReference>
199+
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="{VERSION}" />
200+
```
201+
202+
Save the project file.
203+
180204
The preceding commands add:
181205

182206
* [Command-line interface (CLI) tools for EF Core](/ef/core/miscellaneous/cli/dotnet).

aspnetcore/security/authentication/social/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Facebook and Google authentication in ASP.NET Core
2+
title: Using external login providers with Identity in ASP.NET Core
33
author: rick-anderson
4-
description: Create an ASP.NET Core app using OAuth 2.0 with external authentication providers such as Facebook, Twitter, Google, and Microsoft.
4+
description: Create an ASP.NET Core app using Identity with external authentication providers such as Facebook, Twitter, Google, and Microsoft.
55
ms.author: riande
66
ms.custom: mvc
77
ms.date: 03/07/2022
88
uid: security/authentication/social/index
99
---
10-
# Facebook, Google, and external provider authentication in ASP.NET Core
10+
# External provider authentication in ASP.NET Core Identity
1111

1212
By [Valeriy Novytskyy](https://github.com/01binary) and [Rick Anderson](https://twitter.com/RickAndMSFT)
1313

0 commit comments

Comments
 (0)