Update 20260109

This commit is contained in:
Stefan Hutter
2026-01-09 08:37:07 +01:00
parent e377f08ccd
commit 49155d898f
229 changed files with 28984 additions and 39486 deletions

View File

@@ -0,0 +1,18 @@
Microsoft ASP.NET Web API Tracing
=================================
This package allows the ASP.NET Web API framework to trace to System.Diagnostics.Trace.
To enable tracing in your application please add the following line of code
to your startup code.
If using C#, add the following line to WebApiConfig.cs (Global.asax.cs in an MVC 5 project):
config.EnableSystemDiagnosticsTracing();
If using Visual Basic, add the following line to WebApiConfig.vb (Global.asax.vb in an MVC 5 project):
config.EnableSystemDiagnosticsTracing()
where 'config' is the HttpConfiguration instance for your application.
For additional information on debugging and tracing in ASP.NET Web API, refer to:
http://go.microsoft.com/fwlink/?LinkId=269874