Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyOriginatorKeyFile>$(SolutionRoot)\build\keys\keypair.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="$(IsPackable) == True">
<NoWarn>1591,1572,1571,1573,1587,1570,NU5048</NoWarn>
<NoWarn>$(NoWarn), 1591,1572,1571,1573,1587,1570,NU5048</NoWarn>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<Prefer32Bit>false</Prefer32Bit>
<DebugSymbols>true</DebugSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
<AllowMissingPrunePackageData>true</AllowMissingPrunePackageData>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0')) or
$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net9.0')) or
$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net10.0'))">
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// See the LICENSE file in the project root for more information.

using System;
using System.Diagnostics.CodeAnalysis;
using System.Text.Json.Serialization;
using Elastic.Transport;

Expand All @@ -28,11 +29,17 @@ public bool? ErrorTrace
/// <summary>
/// A list of filters used to reduce the response.
/// <para>
/// Use of response filtering can result in a response from Elasticsearch
/// that cannot be correctly deserialized to the respective response type for the request.
/// In such situations, use the low level client to issue the request and handle response deserialization.
/// Use of response filtering can result in a response from Elasticsearch that cannot be correctly deserialized
/// to the respective response type for the request. In such situations, use the low level client to issue the
/// request and handle response deserialization.
/// </para>
/// </summary>
[Experimental("ESCEXP0001", UrlFormat = "https://www.elastic.co/docs/reference/elasticsearch/clients/dotnet/experimental#{0}"
#if NET10_0_OR_GREATER
, Message = "Use of response filtering can result in a response from Elasticsearch that cannot be correctly deserialized " +
"to the respective response type for the request."
#endif
)]
[JsonIgnore]
public string[]? FilterPath
{
Expand Down
Loading