Skip to content

Commit 2a288c3

Browse files
authored
[Extensions.Propagators] Remove --prereleae flag from installation instruction (#6735)
1 parent 4e2c575 commit 2a288c3

File tree

1 file changed

+2
-2
lines changed
  • src/OpenTelemetry.Extensions.Propagators

1 file changed

+2
-2
lines changed

src/OpenTelemetry.Extensions.Propagators/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add a reference to the
1515
package in your project.
1616

1717
```shell
18-
dotnet add package --prerelease OpenTelemetry.Extensions.Propagators
18+
dotnet add package OpenTelemetry.Extensions.Propagators
1919
```
2020

2121
## Configuration
@@ -26,7 +26,7 @@ Use `B3 OpenZipkin` context only:
2626
using OpenTelemetry;
2727
using OpenTelemetry.Extensions.Propagators;
2828

29-
Sdk.SetDefaultTextMapPropagator(new B3Propagator())
29+
Sdk.SetDefaultTextMapPropagator(new B3Propagator());
3030
```
3131

3232
Use `B3 OpenZipkin` and `W3C Baggage` propagators at the same time:

0 commit comments

Comments
 (0)