Highlight.ASP4 0.1.11

There is a newer version of this package available.
See the version list below for details.
dotnet add package Highlight.ASP4 --version 0.1.11                
NuGet\Install-Package Highlight.ASP4 -Version 0.1.11                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Highlight.ASP4" Version="0.1.11" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Highlight.ASP4 --version 0.1.11                
#r "nuget: Highlight.ASP4, 0.1.11"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Highlight.ASP4 as a Cake Addin
#addin nuget:?package=Highlight.ASP4&version=0.1.11

// Install Highlight.ASP4 as a Cake Tool
#tool nuget:?package=Highlight.ASP4&version=0.1.11                

highlight-io .NET4 SDK

This directory contains the source code for the Highlight .NET4 SDK.

Usage

  1. Install the NuGet Package
  2. Set up the Highlight SDK with your ASP app.
// initialize your webapp
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);

// configure highlight
Highlight.OpenTelemetry.Register(options =>
{
    options.ProjectId = "<YOUR_PROJECT_ID>";
    options.ServiceName = "example-dotnet-backend";
});
  1. Configure Serilog logging to export to highlight
// create a Serilog logger with highlight export
var logger = new LoggerConfiguration()
    .Enrich.WithHighlight()
    .WriteTo.HighlightOpenTelemetry(options =>
    {
        options.ProjectId = "<YOUR_PROJECT_ID>";
        options.ServiceName = "example-dotnet-backend";
    })
    .CreateLogger();
logger.Information("Hello, World!");
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.2 63 10/17/2024
0.2.1 104 9/26/2024
0.2.0-beta.7 102 9/25/2024
0.2.0-beta.6 71 9/11/2024
0.2.0-beta.5 58 9/11/2024
0.2.0-beta.4 62 9/11/2024
0.2.0-beta.2 53 9/11/2024
0.2.0-beta.1 60 9/10/2024
0.1.14 98 9/10/2024
0.1.13 59 9/10/2024
0.1.12 59 9/10/2024
0.1.11 62 9/10/2024
0.1.10 91 9/10/2024
0.1.9 90 9/10/2024
0.1.8 92 9/10/2024
0.1.7 1,395 9/4/2024
0.1.6 138 9/4/2024
0.1.5 80 9/3/2024
0.1.4 147 9/3/2024
0.1.3 144 9/3/2024
0.1.0 142 9/3/2024
0.0.1 132 9/3/2024

Initial Release