Skip to content

Commit 73be7bd

Browse files
gewarrenRick-Anderson
authored andcommitted
Minor tweaks (dotnet#16749)
1 parent 5f9b45a commit 73be7bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aspnetcore/razor-pages/web-sdk.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ uid: razor-pages/web-sdk
1212

1313
### Overview
1414

15-
`Microsoft.NET.Sdk.Web` is a [MSBuild project SDK](https://docs.microsoft.com/visualstudio/msbuild/how-to-use-project-sdk) for building ASP.NET Core apps. It's possible to build an ASP.NET Core app without this SDK, however, the Web SDK is:
15+
`Microsoft.NET.Sdk.Web` is an [MSBuild project SDK](https://docs.microsoft.com/visualstudio/msbuild/how-to-use-project-sdk) for building ASP.NET Core apps. It's possible to build an ASP.NET Core app without this SDK, however, the Web SDK is:
1616

1717
* Tailored towards providing a first-class experience.
1818
* The recommended target for most users.
1919

2020
Use the Web.SDK in a project:
2121

2222
```xml
23-
<Project SDK="Microsoft.NET.Sdk.Web">
23+
<Project Sdk="Microsoft.NET.Sdk.Web">
2424
<!-- omitted for brevity -->
2525
</Project>
2626
```
@@ -31,7 +31,7 @@ Features enabled by using the Web SDK:
3131

3232
* The [ASP.NET Core shared framework](xref:fundamentals/metapackage-app).
3333
* [Analyzers](/visualstudio/extensibility/getting-started-with-roslyn-analyzers) designed for building ASP.NET Core apps.
34-
* The WebSDK enables MSBuild targets that enables the use of publish profiles, and publishing using WebDeploy.
34+
* The Web SDK imports MSBuild targets that enable the use of publish profiles and publishing using WebDeploy.
3535

3636
### Properties
3737

0 commit comments

Comments
 (0)