Unverified Commit 21d3220f authored by Lemon's avatar Lemon Committed by GitHub

Add Supported-list in supported section (#18)

* Update README

* Add Support-list

* Add Supported-list in supported section
parent c3799221
...@@ -9,8 +9,9 @@ SkyWalking C#/.NET instrument agent ...@@ -9,8 +9,9 @@ SkyWalking C#/.NET instrument agent
[![Build status](https://ci.appveyor.com/api/projects/status/fl6vucwfn1vu94dv/branch/master?svg=true)](https://ci.appveyor.com/project/wu-sheng/skywalking-csharp/branch/master) [![Build status](https://ci.appveyor.com/api/projects/status/fl6vucwfn1vu94dv/branch/master?svg=true)](https://ci.appveyor.com/project/wu-sheng/skywalking-csharp/branch/master)
# Supported .NET versions # Supported
This project currently supports apps targeting netstandard2.0 or higher. - This project currently supports apps targeting netstandard2.0 or higher.
- [Supported middlewares, frameworks and libraries.](docs/Supported-list.md)
# Features # Features
A quick list of SkyWalking .NET Core Agent's capabilities A quick list of SkyWalking .NET Core Agent's capabilities
...@@ -50,10 +51,11 @@ public void ConfigureServices(IServiceCollection services) ...@@ -50,10 +51,11 @@ public void ConfigureServices(IServiceCollection services)
services.AddSkyWalking(option => services.AddSkyWalking(option =>
{ {
// Application code is showed in sky-walking-ui // Application code is showed in sky-walking-ui
option.DirectServers = "localhost:11800"; option.ApplicationCode = "Your_ApplicationName";
//Collector agent_gRPC/grpc service addresses. //Collector agent_gRPC/grpc service addresses.
option.ApplicationCode = "Your_ApplicationName"; option.DirectServers = "localhost:11800";
}); });
} }
``` ```
......
* Web Framework
* [ASP.NET Core](https://github.com/aspnet)
* HttpClient
* [HttpClientFactory](https://github.com/aspnet/HttpClientFactory)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment