diff --git a/build/Common.nonprod.props b/build/Common.nonprod.props
index 7e5700a3f8..17782e9532 100644
--- a/build/Common.nonprod.props
+++ b/build/Common.nonprod.props
@@ -27,9 +27,9 @@
$(OpenTelemetryCoreLatestVersion)
$(OpenTelemetryCoreLatestPrereleaseVersion)
net8.0;net7.0;net6.0
- [2.5.0,3.0)
- [2.5.0,3.0)
- [1.5.48,2.0)
+ [2.8.1,3.0)
+ [2.8.1,3.0)
+ [1.5.58,2.0)
diff --git a/src/OpenTelemetry.Instrumentation.Hangfire/HangfireInstrumentationOptions.cs b/src/OpenTelemetry.Instrumentation.Hangfire/HangfireInstrumentationOptions.cs
index baec4e1dba..562ee11878 100644
--- a/src/OpenTelemetry.Instrumentation.Hangfire/HangfireInstrumentationOptions.cs
+++ b/src/OpenTelemetry.Instrumentation.Hangfire/HangfireInstrumentationOptions.cs
@@ -30,7 +30,7 @@ public class HangfireInstrumentationOptions
///
/// Gets or sets a filter function that determines whether or not to
- /// collect telemetry about the the being executed.
+ /// collect telemetry about the being executed.
///
///
/// Notes:
diff --git a/test/OpenTelemetry.Contrib.Shared.Tests/ActivityInstrumentationHelperTest.cs b/test/OpenTelemetry.Contrib.Shared.Tests/ActivityInstrumentationHelperTest.cs
index e5841f53e6..fd99bee0d2 100644
--- a/test/OpenTelemetry.Contrib.Shared.Tests/ActivityInstrumentationHelperTest.cs
+++ b/test/OpenTelemetry.Contrib.Shared.Tests/ActivityInstrumentationHelperTest.cs
@@ -11,7 +11,7 @@ public class ActivityInstrumentationHelperTest
[Theory]
[InlineData("TestActivitySource", null)]
[InlineData("TestActivitySource", "1.0.0")]
- public void SetActivitySource(string name, string version)
+ public void SetActivitySource(string name, string? version)
{
using var activity = new Activity("Test");
using var activitySource = new ActivitySource(name, version);
diff --git a/test/OpenTelemetry.Exporter.Geneva.Tests/GenevaLogExporterTests.cs b/test/OpenTelemetry.Exporter.Geneva.Tests/GenevaLogExporterTests.cs
index 321eaae6c6..fb9ed3168e 100644
--- a/test/OpenTelemetry.Exporter.Geneva.Tests/GenevaLogExporterTests.cs
+++ b/test/OpenTelemetry.Exporter.Geneva.Tests/GenevaLogExporterTests.cs
@@ -1520,8 +1520,8 @@ private void AssertFluentdForwardModeForLogRecord(GenevaExporterOptions exporter
}
else
{
- _ = mapping.TryGetValue("env_properties", out object envProprties);
- var envPropertiesMapping = envProprties as IDictionary