7 references to IsLocalBuildChannel
aspire (6)
Commands\AddCommand.cs (2)
329(VersionHelper.IsLocalBuildChannel(selectedNuGetPackage.Channel.Name) || selectedNuGetPackage.Channel.IsBackedByLocalPackageDirectory)) 516.Where(p => VersionHelper.IsLocalBuildChannel(p.Channel.Name) || p.Channel.IsBackedByLocalPackageDirectory)
Commands\NewCommand.cs (1)
196!VersionHelper.IsLocalBuildChannel(selectedChannel.Name))
Packaging\PackageChannel.cs (2)
96/// Unlike <see cref="VersionHelper.IsLocalBuildChannel(string)"/> — which keys off the channel 669if (!VersionHelper.IsLocalBuildChannel(Name) || Type is not PackageChannelType.Explicit || mappings is not { Length: > 0 })
Templating\TemplateNuGetConfigService.cs (1)
399return VersionHelper.IsLocalBuildChannel(channel.Name) &&
Aspire.Cli.Tests (1)
Utils\VersionHelperTests.cs (1)
111Assert.Equal(expected, VersionHelper.IsLocalBuildChannel(channelName));