Skip to content

Commit f62b24e

Browse files
authored
Upgrade to DiagnosticSource version from nuget. This ensure we can release beta to nuget and users dont have to add any additional nuget source. (open-telemetry#866)
1 parent 68d3c79 commit f62b24e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

NuGet.config

+2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<packageSources>
44
<clear />
55
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
6+
<!--
67
<add key="Dotnet5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
8+
-->
79
</packageSources>
810
<disabledPackageSources />
911
</configuration>

src/OpenTelemetry.Api/OpenTelemetry.Api.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</PropertyGroup>
2020
-->
2121
<ItemGroup>
22-
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="5.0.0-preview.7.20308.13" />
22+
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="5.0.0-preview.7.20364.11" />
2323
</ItemGroup>
2424

2525
</Project>

src/OpenTelemetry.Api/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ documented fully in the TBD(dotnet activity user guide link), but is described
9696
here as well.
9797

9898
1. Install the `System.Diagnostics.DiagnosticSource` package version
99-
5.0.0-preview.7.20308.13 or above to your application or library.
99+
5.0.0-preview.7.20364.11 or above to your application or library.
100100

101101
```xml
102102
<ItemGroup>
103103
<PackageReference
104104
Include="System.Diagnostics.DiagnosticSource"
105-
Version="5.0.0-preview.7.20308.13"
105+
Version="5.0.0-preview.7.20364.11"
106106
/>
107107
</ItemGroup>
108108
```

0 commit comments

Comments
 (0)