Post 1.9.0 release (#3754)

This commit is contained in:
Mateusz Łach 2024-11-06 18:25:44 +01:00 committed by GitHub
parent 8a1f2c8987
commit 4bc7061699
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0.302-jammy@sha256:838644c2dd735cdf0ba3c6ec282b77bfea80039fb45fe41b70d2e026a1f30a12
# install OpenTelemetry .NET Automatic Instrumentation
ARG OTEL_VERSION=1.8.0
ARG OTEL_VERSION=1.9.0
ADD https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v${OTEL_VERSION}/otel-dotnet-auto-install.sh otel-dotnet-auto-install.sh
RUN apt-get update && apt-get install -y unzip && \
OTEL_DOTNET_AUTO_HOME="/otel-dotnet-auto" sh otel-dotnet-auto-install.sh

View File

@ -6,6 +6,6 @@
<ItemGroup>
<PackageReference Include="OpenTelemetry.AutoInstrumentation" Version="$(NuGetPackageVersion)" Condition=" '$(NuGetPackageVersion)' != '' " />
<PackageReference Include="OpenTelemetry.AutoInstrumentation" Version="1.8.0" Condition=" '$(NuGetPackageVersion)' == '' " />
<PackageReference Include="OpenTelemetry.AutoInstrumentation" Version="1.9.0" Condition=" '$(NuGetPackageVersion)' == '' " />
</ItemGroup>
</Project>