6 references to CreateOrUpdateNuGetConfigWithoutPromptAsync
aspire (2)
Commands\InitCommand.cs (2)
259
var createdNuGetConfig = await _templateNuGetConfigService.
CreateOrUpdateNuGetConfigWithoutPromptAsync
(
361
var createdNuGetConfig = await _templateNuGetConfigService.
CreateOrUpdateNuGetConfigWithoutPromptAsync
(
Aspire.Cli.Tests (4)
Templating\TemplateNuGetConfigServiceTests.cs (4)
204
Assert.False(await service.
CreateOrUpdateNuGetConfigWithoutPromptAsync
(channelName: null, outputPath: dir.FullName, CancellationToken.None));
205
Assert.False(await service.
CreateOrUpdateNuGetConfigWithoutPromptAsync
(channelName: "", outputPath: dir.FullName, CancellationToken.None));
206
Assert.False(await service.
CreateOrUpdateNuGetConfigWithoutPromptAsync
(channelName: " ", outputPath: dir.FullName, CancellationToken.None));
1260
var result = await service.
CreateOrUpdateNuGetConfigWithoutPromptAsync
(channelName: "stable", outputDir.FullName, CancellationToken.None);