Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 1 addition & 3 deletions aspnetcore/fundamentals/apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: JeremyLikness
description: Learn how to build fast HTTP APIs with ASP.NET Core using Minimal APIs, the recommended approach for new projects.
ai-usage: ai-assisted
ms.author: jeliknes
ms.date: 08/15/2025
ms.date: 04/30/2026
monikerRange: '>= aspnetcore-6.0'
uid: fundamentals/apis
---
Expand Down Expand Up @@ -88,7 +88,6 @@ Both API projects refer to the following class:
* Model binding extensibility (<xref:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderProvider>, <xref:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder>)
* Advanced validation features (<xref:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator>)
* [Application parts](xref:mvc/extensibility/app-parts) or the [application model](xref:mvc/controllers/application-model)
* [JsonPatch](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/) support
* [OData](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/) support

Most of these features can be implemented in Minimal APIs with custom solutions, but controllers provide them out of the box.
Expand Down Expand Up @@ -151,7 +150,6 @@ Both API projects refer to the following class:
* Form binding support, including <xref:Microsoft.AspNetCore.Http.IFormFile>
* Advanced validation features (<xref:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator>)
* [Application parts](xref:mvc/extensibility/app-parts) or the [application model](xref:mvc/controllers/application-model)
* [JsonPatch](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/) support
* [OData](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/) support

## See also
Expand Down
66 changes: 33 additions & 33 deletions aspnetcore/host-and-deploy/aspnet-core-module.md

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions aspnetcore/host-and-deploy/azure-iis-errors-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: tdykstra
description: Provides troubleshooting advice for the most common errors when hosting ASP.NET Core apps on Azure Apps Service and IIS.
monikerRange: '>= aspnetcore-2.1'
ms.author: tdykstra
ms.date: 7/23/2024
ms.date: 04/21/2026
uid: host-and-deploy/azure-iis-errors-reference
---

Expand All @@ -14,25 +14,25 @@ uid: host-and-deploy/azure-iis-errors-reference

:::moniker range=">= aspnetcore-6.0"

This topic describes the most common errors and provides troubleshooting advice when hosting ASP.NET Core apps on Azure Apps Service and IIS.
This article describes the most common errors and provides troubleshooting advice when hosting ASP.NET Core apps on Azure Apps Service and IIS.

See <xref:test/troubleshoot-azure-iis> information on common app startup errors and instructions on how to diagnose errors.

Collect the following information:

* Browser behavior such as status code and error message.
* Application Event Log entries
* Application Event Log entries.
* Azure App Service: See <xref:test/troubleshoot-azure-iis>.
* IIS
1. Select **Start** on the **Windows** menu, type *Event Viewer*, and press **Enter**.
1. After the **Event Viewer** opens, expand **Windows Logs** > **Application** in the sidebar.
* ASP.NET Core Module stdout and debug log entries
* ASP.NET Core Module stdout and debug log entries.
* Azure App Service: See <xref:test/troubleshoot-azure-iis>.
* IIS: Follow the instructions in the [Log creation and redirection](xref:host-and-deploy/aspnet-core-module#log-creation-and-redirection) and [Enhanced diagnostic logs](xref:host-and-deploy/iis/logging-and-diagnostics#enhanced-diagnostic-logs) sections of the ASP.NET Core Module topic.
* IIS: Follow the instructions in the [Log creation and redirection](xref:host-and-deploy/aspnet-core-module#log-creation-and-redirection) and [Enhanced diagnostic logs](xref:host-and-deploy/iis/logging-and-diagnostics#enhanced-diagnostic-logs) sections of the ASP.NET Core Module article.

Compare error information to the following common errors. If a match is found, follow the troubleshooting advice.

The list of errors in this topic isn't exhaustive. If you encounter an error not listed here, open a new issue using the **Content feedback** button at the bottom of this topic with detailed instructions on how to reproduce the error.
The list of errors in this article isn't exhaustive. If you encounter an error not listed here, open a new issue using the **Content feedback** button at the bottom of this article with detailed instructions on how to reproduce the error.

[!INCLUDE[Azure App Service Preview Notice](~/includes/azure-apps-preview-notice.md)]

Expand Down Expand Up @@ -293,7 +293,7 @@ Troubleshooting:

The process failed to start, most likely due to an app configuration or programming issue.

For more information, see the following topics:
For more information, see the following articles:

* <xref:test/troubleshoot-azure-iis>
* <xref:test/troubleshoot>
Expand Down
Loading
Loading