All Projects → NLog → Nlog.web

NLog / Nlog.web

Licence: bsd-3-clause
NLog integration for ASP.NET & ASP.NET Core 1-5

Projects that are alternatives of or similar to Nlog.web

Awesome-Nuget-Packages
📦 A collection of awesome and top .NET packages sorted by most popular needs.
Stars: ✭ 87 (-65.48%)
Mutual labels:  asp-net-core, asp-net, asp-net-core-mvc
AspNetCore-Dynamic-Permission
Dynamic Permission Samples in ASP.NET Core and ASP.NET MVC 5.
Stars: ✭ 19 (-92.46%)
Mutual labels:  asp-net-core, asp-net, asp-net-core-mvc
PersianDataAnnotations
PersianDataAnnotations is ASP.NET Core MVC & ASP.NET MVC Custom Localization DataAnnotations (Localized MVC Errors) for Persian(Farsi) language - فارسی سازی خطاهای اعتبارسنجی توکار ام.وی.سی. و کور.ام.وی.سی. برای نمایش اعتبار سنجی سمت کلاینت
Stars: ✭ 38 (-84.92%)
Mutual labels:  asp-net-core, asp-net, asp-net-core-mvc
Asp-net-Core-Project-with-Admin-Template-Setup
AdminLTE Template Setup with Asp.net Core MVC 2.1 Project
Stars: ✭ 50 (-80.16%)
Mutual labels:  asp-net-core, asp-net, asp-net-core-mvc
Piranha.core
Piranha CMS is the friendly editor-focused CMS for .NET Core that can be used both as an integrated CMS or as a headless API.
Stars: ✭ 1,242 (+392.86%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Aspnetcoreactivedirectorystarterkit
Starter kit to quickly create ASP.NET Core with On-Premises Active Directory Authentication.
Stars: ✭ 71 (-71.83%)
Mutual labels:  asp-net-core, nlog
Templates
.NET project templates with batteries included, providing the minimum amount of code required to get you going faster.
Stars: ✭ 2,864 (+1036.51%)
Mutual labels:  asp-net-core, asp-net
Jquerydatatablesserverside
Asp.Net Core Server Side for Jquery DataTables Multiple Column Filtering and Sorting with Pagination and Excel Export
Stars: ✭ 191 (-24.21%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Opentelemetry Dotnet
The OpenTelemetry .NET Client
Stars: ✭ 1,037 (+311.51%)
Mutual labels:  asp-net-core, asp-net
Squidex
Headless CMS and Content Managment Hub
Stars: ✭ 1,583 (+528.17%)
Mutual labels:  asp-net-core, asp-net
Puck Core
Open source, cross platform .NET Core CMS. Fast, scalable, code-first, unobtrusive and extensible with powerful querying and Lucene integration.
Stars: ✭ 115 (-54.37%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Home
Welcome to .NET "Presentations in a Box." We have a listing of workshops and presentations YOU can use AND contribute to! Remix and share, and present at Meetups, User Groups, CodeCamps, or Conferences! Not familiar with .NET? Download open source .NET Core for any OS at http://dot.net or try it in your browser at http://try.dot.net now!
Stars: ✭ 204 (-19.05%)
Mutual labels:  asp-net-core, asp-net
Banksystem
ASP.NET Core banking system with secure communication capability between instances, cards, secure payments, etc.
Stars: ✭ 70 (-72.22%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Mytested.aspnetcore.mvc
Fluent testing library for ASP.NET Core MVC.
Stars: ✭ 1,358 (+438.89%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Aspnetcorenlog
ASP.NET Core NLog MS SQL Server PostgreSQL MySQL Elasticsearch
Stars: ✭ 54 (-78.57%)
Mutual labels:  asp-net-core, nlog
Smartbreadcrumbs
A utility library for ASP.NET Core (both MVC and Razor Pages) websites to easily add and customize breadcrumbs.
Stars: ✭ 113 (-55.16%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Elmahcore
ELMAH for Net.Standard and Net.Core
Stars: ✭ 127 (-49.6%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Sio.core
✔ [ SIOC ] Swastika I/O Core is an all in one platform (e.g CMS, eCommerce, Forum, Q&A, CRM...) ASP.NET Core / Dotnet Core System based on SIOH Framework.
Stars: ✭ 121 (-51.98%)
Mutual labels:  asp-net-core, asp-net-core-mvc
Vuejsssrsample
ASP.NET Core Vue.js server-side rendering sample:
Stars: ✭ 146 (-42.06%)
Mutual labels:  asp-net-core, asp-net
Coolcat
A sample about how to create a dynamic plugins mechanism with ASP.NET Core Mvc at runtime. This sample is based on .NET Core 3.1 and .NET 5
Stars: ✭ 216 (-14.29%)
Mutual labels:  asp-net-core, asp-net-core-mvc

NLog

NLog.Web (ASP.NET & ASP.NET Core)

AppVeyor Version Version

These packages are extensions to NLog.

The packages contain targets and layout-renderes specific to ASP.NET (Core), MVC and IIS.

Getting started with NLog

Config

Troubleshooting

Releases

For updates and releases, check CHANGELOG.MD or Releases

ASP.NET Core

ASP.NET Core 1, 2, 3 and 5 are supported!

Supported platforms:

  • For ASP.NET Core 5, .NET 5
  • For ASP.NET Core 3, .NET Core 3.0
  • For ASP.NET Core 2, .NET Standard 2.0+ and .NET 4.6+
  • For ASP.NET Core 1, .NET Standard 1.5+ and .NET 4.5.x

ℹ️ Missing the trace and debug logs in .NET Core 2? Check your appsettings.json

Use the NLog.Web.AspNetCore package

There is a special package for ASP.NET Core / MVC Core. This is needed because we can't detect if ASP.NET or ASP.NET Core is used. The package depends on NLog.Extensions.Logging - which integrates with the ASP.NET Core logging system.

ASP.NET (non-core)

Use the NLog.Web package.

HTTP module (ASP.NET non-core)

note: not listed on https://nlog-project.org/config

There is a ASP.NET ASP.NET HttpModule that enables NLog to hook BeginRequest and EndRequest events easily.

The NLogHttpModule needs a registration in the web.config:

<system.webServer> 
	<modules runAllManagedModulesForAllRequests="true"> 
		<add name="NLog" type="NLog.Web.NLogHttpModule, NLog.Web" />
	</modules>
</system.webServer>

Contributions

Contributions are highly appreciated! Please make sure if works for ASP.NET and ASP.NET Core if possible and make sure it is covered by unit tests.

License

BSD

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].