File tree Expand file tree Collapse file tree 7 files changed +17
-12
lines changed
src/OpenTelemetry.Instrumentation.StackExchangeRedis
OpenTelemetry.Instrumentation.Cassandra.Tests
OpenTelemetry.Instrumentation.ConfluentKafka.Tests
OpenTelemetry.Instrumentation.StackExchangeRedis.Tests Expand file tree Collapse file tree 7 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 1414 strategy :
1515 fail-fast : false
1616 matrix :
17- version : [net6.0, net8.0]
17+ version : [net8.0]
1818 steps :
1919 - uses : actions/checkout@v4
2020
Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ * Drop support for .NET 6 as this target is no longer supported and add .NET 8 target.
6+ ([ #2160 ] ( https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2160 ) )
7+
58## 1.9.0-beta.1
69
710Released 2024-Jul-23
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
2+
23 <PropertyGroup >
34 <!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. -->
4- <TargetFrameworks >net6 .0;netstandard2.0;net462 </TargetFrameworks >
5- <Description >StackExchange.Redis instrumentation for OpenTelemetry .NET</Description >
5+ <TargetFrameworks >net8 .0;$(NetStandardMinimumSupportedVersion);$(NetFrameworkMinimumSupportedVersion) </TargetFrameworks >
6+ <Description >StackExchange.Redis instrumentation for OpenTelemetry .NET. </Description >
67 <PackageTags >$(PackageTags);distributed-tracing;Redis;StackExchange.Redis</PackageTags >
78 <MinVerTagPrefix >Instrumentation.StackExchangeRedis-</MinVerTagPrefix >
89 </PropertyGroup >
910
10- <!-- Do not run Package Baseline Validation as this package has never released a stable version.
11- Remove this property once we have released a stable version and add PackageValidationBaselineVersion property.-->
11+ <!-- Do not run Package Baseline Validation as this package has never released a stable version.
12+ Remove this property once we have released a stable version and add PackageValidationBaselineVersion property. -->
1213 <PropertyGroup >
1314 <DisablePackageBaselineValidation >true</DisablePackageBaselineValidation >
1415 </PropertyGroup >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ ARG PUBLISH_FRAMEWORK=net8.0
1111WORKDIR /repo
1212COPY . ./
1313WORKDIR "/repo/test/OpenTelemetry.Instrumentation.Cassandra.Tests"
14- RUN dotnet publish "OpenTelemetry.Instrumentation.Cassandra.Tests.csproj" -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /drop -p:IntegrationBuild=true -p:TARGET_FRAMEWORK=${PUBLISH_FRAMEWORK}
14+ RUN dotnet publish "OpenTelemetry.Instrumentation.Cassandra.Tests.csproj" -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /drop -p:IntegrationBuild=true
1515
1616FROM mcr.microsoft.com/dotnet/sdk:${TEST_SDK_VERSION} AS final
1717WORKDIR /test
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ ARG PUBLISH_FRAMEWORK=net8.0
1111WORKDIR /repo
1212COPY . ./
1313WORKDIR "/repo/test/OpenTelemetry.Instrumentation.ConfluentKafka.Tests"
14- RUN dotnet publish "OpenTelemetry.Instrumentation.ConfluentKafka.Tests.csproj" -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /drop -p:IntegrationBuild=true -p:TARGET_FRAMEWORK=${PUBLISH_FRAMEWORK}
14+ RUN dotnet publish "OpenTelemetry.Instrumentation.ConfluentKafka.Tests.csproj" -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /drop -p:IntegrationBuild=true
1515
1616FROM mcr.microsoft.com/dotnet/sdk:${TEST_SDK_VERSION} AS final
1717WORKDIR /test
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ ARG PUBLISH_FRAMEWORK=net8.0
1111WORKDIR /repo
1212COPY . ./
1313WORKDIR "/repo/test/OpenTelemetry.Instrumentation.StackExchangeRedis.Tests"
14- RUN dotnet publish "OpenTelemetry.Instrumentation.StackExchangeRedis.Tests.csproj" -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /drop -p:IntegrationBuild=true -p:TARGET_FRAMEWORK=${PUBLISH_FRAMEWORK}
14+ RUN dotnet publish "OpenTelemetry.Instrumentation.StackExchangeRedis.Tests.csproj" -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /drop -p:IntegrationBuild=true
1515
1616FROM mcr.microsoft.com/dotnet/sdk:${TEST_SDK_VERSION} AS final
1717WORKDIR /test
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
2+
23 <PropertyGroup >
3- <Description >Unit test project for OpenTelemetry StackExchangeRedis instrumentation</Description >
44 <!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. -->
5- <TargetFrameworks Condition = " $(TARGET_FRAMEWORK) == '' " >$(SupportedNetTargets )</TargetFrameworks >
6- <TargetFrameworks Condition =" $(TARGET_FRAMEWORK) == '' and $( OS) == 'Windows_NT'" >$(TargetFrameworks);net462 </TargetFrameworks >
7- <TargetFrameworks Condition = " $(TARGET_FRAMEWORK) != '' " >$(TARGET_FRAMEWORK)</ TargetFrameworks >
5+ <TargetFrameworks >$(SupportedNetTargetsWithoutNet6 )</TargetFrameworks >
6+ <TargetFrameworks Condition =" $(OS) == 'Windows_NT'" >$(TargetFrameworks);$(NetFrameworkMinimumSupportedVersion) </TargetFrameworks >
7+ <Description >Unit test project for OpenTelemetry StackExchangeRedis instrumentation.</ Description >
88 </PropertyGroup >
99
1010 <ItemGroup >
2424 <!-- System.Text.Json is indirect reference. It is needed to upgrade it directly to avoid https://github.com/advisories/GHSA-hh2w-p6rv-4g7w -->
2525 <PackageReference Include =" System.Text.Json" Version =" 8.0.4" />
2626 </ItemGroup >
27+
2728</Project >
You can’t perform that action at this time.
0 commit comments