1 write to Name
Aspire.Hosting (1)
IInteractionService.cs (1)
540Name = name;
11 references to Name
Aspire.Hosting.RemoteHost.Tests (2)
AtsExportsTests.cs (2)
154Assert.Equal("artifact.zip", file.Name); 161Assert.Equal("artifact.zip", file.Name);
Aspire.Hosting.Tests (3)
Dashboard\DashboardServiceTests.cs (2)
1145Assert.Equal("document.txt", file.Name); 1147Assert.Equal("second.txt", secondFile.Name);
Publishing\PipelineActivityReporterTests.cs (1)
678Assert.Equal("artifact.zip", file.Name);
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
139await certTask.UpdateAsync($"Certificate: {certFile.Name}");
Stress.AppHost (5)
InteractionCommands.cs (5)
516value += $" (Files: {string.Join(", ", files.Select(f => f.Name))})"; 1023logger.LogInformation("Imported configuration from '{FileName}' ({Size} bytes)", file.Name, content.Length); 1025return CommandResults.Success($"Successfully imported **{file.Name}** ({content.Length:N0} bytes)."); 1072logger.LogInformation("Installed certificate '{FileName}' ({Size} bytes)", file.Name, bytes.Length); 1073fileDetails.Add(new { name = file.Name, size = bytes.Length });