diff --git a/Common.props b/Common.props
index 2ff0ccc89..173c2d47a 100644
--- a/Common.props
+++ b/Common.props
@@ -7,7 +7,7 @@
-
+
diff --git a/build/ProjectsHelper.cs b/build/ProjectsHelper.cs
index 1bec53d93..26aa7c907 100644
--- a/build/ProjectsHelper.cs
+++ b/build/ProjectsHelper.cs
@@ -12,10 +12,10 @@ public static class ProjectsHelper
private const string TestApplicationSelector = "TestApplication.*";
private const string TestLibrarySelector = "TestLibrary.*";
- private readonly static AbsolutePath SrcDirectory = NukeBuild.RootDirectory / "src";
- private readonly static AbsolutePath TestDirectory = NukeBuild.RootDirectory / "test";
- private readonly static AbsolutePath TestIntegrationApps = TestDirectory / "test-applications" / "integrations";
- private readonly static AbsolutePath TestNuGetPackagesApps = TestDirectory / "test-applications" / "nuget-packages";
+ private static readonly AbsolutePath SrcDirectory = NukeBuild.RootDirectory / "src";
+ private static readonly AbsolutePath TestDirectory = NukeBuild.RootDirectory / "test";
+ private static readonly AbsolutePath TestIntegrationApps = TestDirectory / "test-applications" / "integrations";
+ private static readonly AbsolutePath TestNuGetPackagesApps = TestDirectory / "test-applications" / "nuget-packages";
public static IEnumerable GetManagedSrcProjects(this Solution solution)
{
diff --git a/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator.cs b/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator.cs
index 56eb005f6..19c165af6 100644
--- a/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator.cs
+++ b/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator.cs
@@ -15,6 +15,7 @@
//
namespace OpenTelemetry.AutoInstrumentation.CallTarget.Handlers.Continuations;
+
#if NET6_0_OR_GREATER
internal class ValueTaskContinuationGenerator : ContinuationGenerator
{
diff --git a/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator`1.cs b/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator`1.cs
index aeb667e55..ffee116d3 100644
--- a/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator`1.cs
+++ b/src/OpenTelemetry.AutoInstrumentation/CallTarget/Handlers/Continuations/ValueTaskContinuationGenerator`1.cs
@@ -17,6 +17,7 @@
#pragma warning disable SA1649 // File name must match first type name
namespace OpenTelemetry.AutoInstrumentation.CallTarget.Handlers.Continuations;
+
#if NET6_0_OR_GREATER
internal class ValueTaskContinuationGenerator : ContinuationGenerator
{
diff --git a/src/OpenTelemetry.AutoInstrumentation/Configurations/ServiceNameConfigurator.cs b/src/OpenTelemetry.AutoInstrumentation/Configurations/ServiceNameConfigurator.cs
index ec1209dac..e6870d9ba 100644
--- a/src/OpenTelemetry.AutoInstrumentation/Configurations/ServiceNameConfigurator.cs
+++ b/src/OpenTelemetry.AutoInstrumentation/Configurations/ServiceNameConfigurator.cs
@@ -19,6 +19,7 @@ using System.Reflection;
using System.Runtime.CompilerServices;
namespace OpenTelemetry.AutoInstrumentation.Configurations;
+
internal static class ServiceNameConfigurator
{
internal static string GetFallbackServiceName()
diff --git a/test/IntegrationTests/WcfTestsBase.cs b/test/IntegrationTests/WcfTestsBase.cs
index 03f49f651..6fab991dc 100644
--- a/test/IntegrationTests/WcfTestsBase.cs
+++ b/test/IntegrationTests/WcfTestsBase.cs
@@ -21,6 +21,7 @@ using Xunit.Abstractions;
using static OpenTelemetry.Proto.Trace.V1.Span.Types;
namespace IntegrationTests;
+
public abstract class WcfTestsBase : TestHelper, IDisposable
{
private readonly string _testAppName;
diff --git a/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsMutation.cs b/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsMutation.cs
index 04d78e0c2..4095cb267 100644
--- a/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsMutation.cs
+++ b/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsMutation.cs
@@ -13,7 +13,7 @@ namespace StarWars;
/// "name": "Boba Fett"
/// }
/// }
-/// }
+/// }.
///
public class StarWarsMutation : ObjectGraphType
{
diff --git a/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsSubscription.cs b/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsSubscription.cs
index 750e0e171..90ab29767 100644
--- a/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsSubscription.cs
+++ b/test/test-applications/integrations/TestApplication.GraphQL/StarWars/StarWarsSubscription.cs
@@ -10,7 +10,7 @@ namespace StarWars;
/// This is an example JSON request for a subscription
/// {
/// "query": "subscription HumanAddedSub{ humanAdded { name } }",
-/// }
+/// }.
///
internal class StarWarsSubscription : ObjectGraphType