4 writes to SdkVersion
aspire (3)
Configuration\AspireConfigFile.cs (2)
162
config.
SdkVersion
??= defaultSdkVersion;
187
config.
SdkVersion
??= defaultSdkVersion;
Projects\GuestAppHostProject.cs (1)
1115
config.
SdkVersion
= newSdkVersion;
Aspire.Cli.Tests (1)
Configuration\AspireConfigFileTests.cs (1)
194
config.
SdkVersion
= "13.2.0";
4 references to SdkVersion
aspire (2)
Projects\GuestAppHostProject.cs (2)
1050
if (latestSdkPackage is not null && latestSdkPackage.Version != config.
SdkVersion
)
1098
_interactionService.DisplayMessage(KnownEmojis.Package, $"[bold yellow]Aspire SDK[/] [bold green]{config.
SdkVersion
.EscapeMarkup()}[/] to [bold green]{newSdkVersion.EscapeMarkup()}[/]", allowMarkup: true);
Aspire.Cli.Tests (2)
Configuration\AspireConfigFileTests.cs (2)
186
Assert.Equal("13.2.0", config.
SdkVersion
);
205
Assert.Null(config.
SdkVersion
);