Zum Inhalt springen

Compiler Error ASPIREPROXYENDPOINTS001

Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.

Version introduced: 9.1

WithEndpointProxySupport is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.

-or-

ProxySupportAnnotation is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.

Both WithEndpointProxySupport and ProxySupportAnnotation are considered experimental APIs.

Container resources use proxied endpoints by default. Adjusting this setting is experimental.

The following code generates ASPIREPROXYENDPOINTS001:

C# — AppHost.cs
var builder = DistributedApplication.CreateBuilder(args);
var redis = builder.AddRedis($"example-redis", 1234)
.WithEndpointProxySupport(false);

Suppress the error with either of the following methods:

  • Set the severity of the rule in the .editorconfig file.

    .editorconfig
    [*.{cs,vb}]
    dotnet_diagnostic.ASPIREPROXYENDPOINTS001.severity = none

    For more information about editor config files, see Configuration files for code analysis rules.

  • Add the following PropertyGroup to your project file:

    C# project file
    <PropertyGroup>
    <NoWarn>$(NoWarn);ASPIREPROXYENDPOINTS001</NoWarn>
    </PropertyGroup>
  • Suppress in code with the #pragma warning disable ASPIREPROXYENDPOINTS001 directive.

Fragen & AntwortenZusammenarbeitenCommunityDiskutierenAnsehen