1 write to IsImplicit
Aspire.Hosting (1)
ApplicationModel\ResolvedPort.cs (1)
48public static ResolvedPort Implicit(int port) => new() { Value = port, IsImplicit = true };
4 references to IsImplicit
Aspire.Hosting (1)
Publishing\ManifestPublishingContext.cs (1)
507if (resolved.ExposedPort.Value is int exposedPort && !resolved.ExposedPort.IsImplicit &&
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentContext.cs (1)
55var exposedPort = (resolved.ExposedPort.IsAllocated || resolved.ExposedPort.IsImplicit) ? null : resolved.ExposedPort.Value;
Aspire.Hosting.Tests (2)
ResourceExtensionsTests.cs (2)
686Assert.False(endpoint.TargetPort.IsImplicit); 689Assert.True(endpoint.ExposedPort.IsImplicit);