From 72ea4730f71a997c03da9dc18e760cd316addb62 Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Mon, 26 Feb 2024 17:07:47 +0100 Subject: [PATCH] Various profiler updates --- build/build.fsproj | 2 +- build/scripts/Tooling.fs | 2 +- .../HttpListenerSample.csproj | 2 +- .../DuckTyping/DuckType.Statics.cs | 5 +- .../Integrations/AdoNet/AdoNetTypeNames.cs | 2 +- .../integrations.yml | 266 +++++++++--------- .../Elastic.Apm.Tests.MockApmServer.csproj | 2 +- .../Elastic.Apm.Azure.CosmosDb.Tests.csproj | 2 +- .../Elastic.Apm.Azure.ServiceBus.Tests.csproj | 2 +- .../Elastic.Apm.Azure.Storage.Tests.csproj | 2 +- .../SampleAspNetCoreApp.csproj | 2 +- .../Elastic.Apm.Profiler.Managed.Tests.csproj | 3 +- .../KafkaSample/KafkaSample.csproj | 4 +- .../RabbitMqSample/RabbitMqSample.csproj | 4 +- .../SqliteSample/SqliteSample.csproj | 2 +- 15 files changed, 151 insertions(+), 151 deletions(-) diff --git a/build/build.fsproj b/build/build.fsproj index 9aa42140d..5f1c89a1c 100644 --- a/build/build.fsproj +++ b/build/build.fsproj @@ -35,7 +35,7 @@ - + diff --git a/build/scripts/Tooling.fs b/build/scripts/Tooling.fs index 66466d840..445111974 100644 --- a/build/scripts/Tooling.fs +++ b/build/scripts/Tooling.fs @@ -11,7 +11,7 @@ open ProcNet.Std module Tooling = type ExecResult = { ExitCode: int; Output: LineOut seq;} - let private defaultTimeout = TimeSpan.FromMinutes 5. + let private defaultTimeout = TimeSpan.FromMinutes 10. type NoopWriter () = interface IConsoleOutWriter with diff --git a/sample/HttpListenerSample/HttpListenerSample.csproj b/sample/HttpListenerSample/HttpListenerSample.csproj index 5d47cf29c..9d1152725 100644 --- a/sample/HttpListenerSample/HttpListenerSample.csproj +++ b/sample/HttpListenerSample/HttpListenerSample.csproj @@ -10,7 +10,7 @@ - + diff --git a/src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/DuckType.Statics.cs b/src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/DuckType.Statics.cs index 1c013f5c3..e7671c080 100644 --- a/src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/DuckType.Statics.cs +++ b/src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/DuckType.Statics.cs @@ -45,8 +45,9 @@ public static partial class DuckType private static readonly PropertyInfo DuckTypeInstancePropertyInfo = typeof(IDuckType).GetProperty(nameof(IDuckType.Instance)); [DebuggerBrowsable(DebuggerBrowsableState.Never)] - private static readonly MethodInfo _methodBuilderGetToken = - typeof(MethodBuilder).GetMethod("GetToken", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance); + private static readonly MethodInfo _methodBuilderGetToken = typeof(MethodBuilder) + .GetMethod("GetToken", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance) + ?? typeof(MethodBuilder).GetProperty("MetadataToken", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)?.GetMethod; [DebuggerBrowsable(DebuggerBrowsableState.Never)] private static readonly Dictionary ActiveBuilders = new Dictionary(); diff --git a/src/profiler/Elastic.Apm.Profiler.Managed/Integrations/AdoNet/AdoNetTypeNames.cs b/src/profiler/Elastic.Apm.Profiler.Managed/Integrations/AdoNet/AdoNetTypeNames.cs index 8ba6ccb94..4ceb117af 100644 --- a/src/profiler/Elastic.Apm.Profiler.Managed/Integrations/AdoNet/AdoNetTypeNames.cs +++ b/src/profiler/Elastic.Apm.Profiler.Managed/Integrations/AdoNet/AdoNetTypeNames.cs @@ -64,7 +64,7 @@ public InstrumentMicrosoftDataSqliteAttribute() Assembly = "Microsoft.Data.Sqlite"; Type = "Microsoft.Data.Sqlite.SqliteCommand"; MinimumVersion = "2.0.0"; - MaximumVersion = "7.*.*"; + MaximumVersion = "8.*.*"; Group = "SqliteCommand"; } } diff --git a/src/profiler/Elastic.Apm.Profiler.Managed/integrations.yml b/src/profiler/Elastic.Apm.Profiler.Managed/integrations.yml index 095a1de4a..e089c672f 100644 --- a/src/profiler/Elastic.Apm.Profiler.Managed/integrations.yml +++ b/src/profiler/Elastic.Apm.Profiler.Managed/integrations.yml @@ -10,7 +10,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -23,7 +23,7 @@ minimum_version: 4.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -37,7 +37,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -51,7 +51,7 @@ minimum_version: 4.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -64,7 +64,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -77,7 +77,7 @@ minimum_version: 4.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - name: AspNet @@ -93,7 +93,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AspNet.ElasticApmModuleIntegration action: CallTargetModification - name: Kafka @@ -107,7 +107,7 @@ minimum_version: 1.4.0 maximum_version: 1.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.Kafka.KafkaConsumerCloseIntegration action: CallTargetModification - target: @@ -120,7 +120,7 @@ minimum_version: 1.4.0 maximum_version: 1.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.Kafka.KafkaConsumerConsumeIntegration action: CallTargetModification - target: @@ -132,7 +132,7 @@ minimum_version: 1.4.0 maximum_version: 1.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.Kafka.KafkaConsumerDisposeIntegration action: CallTargetModification - target: @@ -144,7 +144,7 @@ minimum_version: 1.4.0 maximum_version: 1.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.Kafka.KafkaConsumerUnsubscribeIntegration action: CallTargetModification - target: @@ -159,7 +159,7 @@ minimum_version: 1.4.0 maximum_version: 1.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.Kafka.KafkaProduceAsyncIntegration action: CallTargetModification - target: @@ -175,7 +175,7 @@ minimum_version: 1.4.0 maximum_version: 1.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.Kafka.KafkaProduceSyncDeliveryHandlerIntegration action: CallTargetModification - target: @@ -190,7 +190,7 @@ minimum_version: 1.4.0 maximum_version: 1.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.Kafka.KafkaProduceSyncIntegration action: CallTargetModification - name: MySqlCommand @@ -205,7 +205,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -217,7 +217,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -230,7 +230,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -243,7 +243,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -255,7 +255,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -269,7 +269,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -283,7 +283,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -296,7 +296,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -309,7 +309,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -322,7 +322,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -334,7 +334,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -347,7 +347,7 @@ minimum_version: 6.7.0 maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification - name: NpgsqlCommand @@ -362,7 +362,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -374,7 +374,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -387,7 +387,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -401,7 +401,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -414,7 +414,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -428,7 +428,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -441,7 +441,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -454,7 +454,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -467,7 +467,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -479,7 +479,7 @@ minimum_version: 4.0.0 maximum_version: 7.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - name: OracleCommand @@ -494,7 +494,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -507,7 +507,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -519,7 +519,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -531,7 +531,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -544,7 +544,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -557,7 +557,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -570,7 +570,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -583,7 +583,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -595,7 +595,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -607,7 +607,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -621,7 +621,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -635,7 +635,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -649,7 +649,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -663,7 +663,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -676,7 +676,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -689,7 +689,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -702,7 +702,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -715,7 +715,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -728,7 +728,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -741,7 +741,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -753,7 +753,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -765,7 +765,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -778,7 +778,7 @@ minimum_version: 4.122.0 maximum_version: 4.122.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification - target: @@ -791,7 +791,7 @@ minimum_version: 2.0.0 maximum_version: 3.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification - name: RabbitMQ @@ -812,7 +812,7 @@ minimum_version: 3.6.9 maximum_version: 6.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.RabbitMq.BasicDeliverIntegration action: CallTargetModification - target: @@ -826,7 +826,7 @@ minimum_version: 3.6.9 maximum_version: 6.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.RabbitMq.BasicGetIntegration action: CallTargetModification - target: @@ -843,7 +843,7 @@ minimum_version: 3.6.9 maximum_version: 6.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.RabbitMq.BasicPublishIntegration action: CallTargetModification - name: SqlCommand @@ -858,7 +858,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -871,7 +871,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -884,7 +884,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -896,7 +896,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -908,7 +908,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -920,7 +920,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -933,7 +933,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -946,7 +946,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -959,7 +959,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -972,7 +972,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -985,7 +985,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -998,7 +998,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -1010,7 +1010,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -1022,7 +1022,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -1034,7 +1034,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -1048,7 +1048,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1062,7 +1062,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1076,7 +1076,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1090,7 +1090,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1104,7 +1104,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1118,7 +1118,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1131,7 +1131,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1144,7 +1144,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1157,7 +1157,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1170,7 +1170,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1183,7 +1183,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1196,7 +1196,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1209,7 +1209,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -1222,7 +1222,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -1235,7 +1235,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -1247,7 +1247,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -1259,7 +1259,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -1271,7 +1271,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -1284,7 +1284,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification - target: @@ -1297,7 +1297,7 @@ minimum_version: 4.0.0 maximum_version: 4.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification - target: @@ -1310,7 +1310,7 @@ minimum_version: 1.0.0 maximum_version: 5.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification - name: SqliteCommand @@ -1323,9 +1323,9 @@ - System.Threading.Tasks.Task`1 - System.Threading.CancellationToken minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -1338,7 +1338,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryAsyncIntegration action: CallTargetModification - target: @@ -1348,9 +1348,9 @@ signature_types: - System.Int32 minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -1362,7 +1362,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryIntegration action: CallTargetModification - target: @@ -1373,9 +1373,9 @@ - System.Int32 - System.Data.CommandBehavior minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -1388,7 +1388,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteNonQueryWithBehaviorIntegration action: CallTargetModification - target: @@ -1399,9 +1399,9 @@ - System.Threading.Tasks.Task`1 - System.Threading.CancellationToken minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -1414,7 +1414,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderAsyncIntegration action: CallTargetModification - target: @@ -1424,9 +1424,9 @@ signature_types: - Microsoft.Data.Sqlite.SqliteDataReader minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -1438,7 +1438,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderIntegration action: CallTargetModification - target: @@ -1450,9 +1450,9 @@ - System.Data.CommandBehavior - System.Threading.CancellationToken minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1466,7 +1466,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1478,9 +1478,9 @@ - System.Data.CommandBehavior - System.Threading.CancellationToken minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorAsyncIntegration action: CallTargetModification - target: @@ -1491,9 +1491,9 @@ - Microsoft.Data.Sqlite.SqliteDataReader - System.Data.CommandBehavior minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1506,7 +1506,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1517,9 +1517,9 @@ - System.Data.Common.DbDataReader - System.Data.CommandBehavior minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteReaderWithBehaviorIntegration action: CallTargetModification - target: @@ -1530,9 +1530,9 @@ - System.Threading.Tasks.Task`1 - System.Threading.CancellationToken minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -1545,7 +1545,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarAsyncIntegration action: CallTargetModification - target: @@ -1555,9 +1555,9 @@ signature_types: - System.Object minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -1569,7 +1569,7 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarIntegration action: CallTargetModification - target: @@ -1580,9 +1580,9 @@ - System.Object - System.Data.CommandBehavior minimum_version: 2.0.0 - maximum_version: 7.*.* + maximum_version: 8.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification - target: @@ -1595,6 +1595,6 @@ minimum_version: 1.0.0 maximum_version: 2.*.* wrapper: - assembly: Elastic.Apm.Profiler.Managed, Version=1.24.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 + assembly: Elastic.Apm.Profiler.Managed, Version=1.26.0.0, Culture=neutral, PublicKeyToken=ae7400d2c189cf22 type: Elastic.Apm.Profiler.Managed.Integrations.AdoNet.CommandExecuteScalarWithBehaviorIntegration action: CallTargetModification diff --git a/test/Elastic.Apm.Tests.MockApmServer/Elastic.Apm.Tests.MockApmServer.csproj b/test/Elastic.Apm.Tests.MockApmServer/Elastic.Apm.Tests.MockApmServer.csproj index b8ba66291..514517306 100644 --- a/test/Elastic.Apm.Tests.MockApmServer/Elastic.Apm.Tests.MockApmServer.csproj +++ b/test/Elastic.Apm.Tests.MockApmServer/Elastic.Apm.Tests.MockApmServer.csproj @@ -1,4 +1,4 @@ - + net8.0 Elastic.Apm.Tests.MockApmServer diff --git a/test/azure/Elastic.Apm.Azure.CosmosDb.Tests/Elastic.Apm.Azure.CosmosDb.Tests.csproj b/test/azure/Elastic.Apm.Azure.CosmosDb.Tests/Elastic.Apm.Azure.CosmosDb.Tests.csproj index 3c5393324..1dcc62ed6 100644 --- a/test/azure/Elastic.Apm.Azure.CosmosDb.Tests/Elastic.Apm.Azure.CosmosDb.Tests.csproj +++ b/test/azure/Elastic.Apm.Azure.CosmosDb.Tests/Elastic.Apm.Azure.CosmosDb.Tests.csproj @@ -10,7 +10,7 @@ - + diff --git a/test/azure/Elastic.Apm.Azure.ServiceBus.Tests/Elastic.Apm.Azure.ServiceBus.Tests.csproj b/test/azure/Elastic.Apm.Azure.ServiceBus.Tests/Elastic.Apm.Azure.ServiceBus.Tests.csproj index 4ec9e7cb5..247a0e56a 100644 --- a/test/azure/Elastic.Apm.Azure.ServiceBus.Tests/Elastic.Apm.Azure.ServiceBus.Tests.csproj +++ b/test/azure/Elastic.Apm.Azure.ServiceBus.Tests/Elastic.Apm.Azure.ServiceBus.Tests.csproj @@ -10,7 +10,7 @@ - + diff --git a/test/azure/Elastic.Apm.Azure.Storage.Tests/Elastic.Apm.Azure.Storage.Tests.csproj b/test/azure/Elastic.Apm.Azure.Storage.Tests/Elastic.Apm.Azure.Storage.Tests.csproj index f7137c913..ac1e939cc 100644 --- a/test/azure/Elastic.Apm.Azure.Storage.Tests/Elastic.Apm.Azure.Storage.Tests.csproj +++ b/test/azure/Elastic.Apm.Azure.Storage.Tests/Elastic.Apm.Azure.Storage.Tests.csproj @@ -12,7 +12,7 @@ - + diff --git a/test/integrations/applications/SampleAspNetCoreApp/SampleAspNetCoreApp.csproj b/test/integrations/applications/SampleAspNetCoreApp/SampleAspNetCoreApp.csproj index 7220983ee..052f7d253 100644 --- a/test/integrations/applications/SampleAspNetCoreApp/SampleAspNetCoreApp.csproj +++ b/test/integrations/applications/SampleAspNetCoreApp/SampleAspNetCoreApp.csproj @@ -6,7 +6,7 @@ AnyCPU - + diff --git a/test/profiler/Elastic.Apm.Profiler.Managed.Tests/Elastic.Apm.Profiler.Managed.Tests.csproj b/test/profiler/Elastic.Apm.Profiler.Managed.Tests/Elastic.Apm.Profiler.Managed.Tests.csproj index 377f9616a..5950a9c41 100644 --- a/test/profiler/Elastic.Apm.Profiler.Managed.Tests/Elastic.Apm.Profiler.Managed.Tests.csproj +++ b/test/profiler/Elastic.Apm.Profiler.Managed.Tests/Elastic.Apm.Profiler.Managed.Tests.csproj @@ -1,7 +1,6 @@ - net8.0 false @@ -16,7 +15,7 @@ - + diff --git a/test/profiler/applications/KafkaSample/KafkaSample.csproj b/test/profiler/applications/KafkaSample/KafkaSample.csproj index b16e95c72..a2f3c7cdf 100644 --- a/test/profiler/applications/KafkaSample/KafkaSample.csproj +++ b/test/profiler/applications/KafkaSample/KafkaSample.csproj @@ -1,14 +1,14 @@ - 1.4.3 + 1.9.3 Exe net8.0 - + diff --git a/test/profiler/applications/RabbitMqSample/RabbitMqSample.csproj b/test/profiler/applications/RabbitMqSample/RabbitMqSample.csproj index 7a0dfb9fa..83c2d77db 100644 --- a/test/profiler/applications/RabbitMqSample/RabbitMqSample.csproj +++ b/test/profiler/applications/RabbitMqSample/RabbitMqSample.csproj @@ -1,8 +1,8 @@ - 6.2.2 - $(DefineConstants);RABBITMQ_6_0 + 6.8.1 + $(DefineConstants);RABBITMQ_6_0 Exe net8.0 diff --git a/test/profiler/applications/SqliteSample/SqliteSample.csproj b/test/profiler/applications/SqliteSample/SqliteSample.csproj index ca3f8c204..83df7f9d6 100644 --- a/test/profiler/applications/SqliteSample/SqliteSample.csproj +++ b/test/profiler/applications/SqliteSample/SqliteSample.csproj @@ -1,7 +1,7 @@ - 7.0.2 + 8.0.2 Exe net462;net6.0;net8.0 x64