14 references to MaxFileCount
Aspire.Hosting (1)
src\Shared\InteractionHelpers.cs (1)
35
public static int GetMaxFileCount(bool allowMultipleFiles) => allowMultipleFiles ?
MaxFileCount
: 1;
Aspire.Hosting.Tests (13)
Backchannel\AppHostRpcTargetUploadTests.cs (1)
22
fileUploadStore.StartInteraction(interactionId, [(inputName, InteractionHelpers.
MaxFileCount
)]);
Dashboard\DashboardServiceTests.cs (7)
837
fileUploadStore.StartInteraction(1, [("File", InteractionHelpers.
MaxFileCount
)]);
919
fileUploadStore.StartInteraction(1, [("File", InteractionHelpers.
MaxFileCount
)]);
940
fileUploadStore.StartInteraction(1, [("File", InteractionHelpers.
MaxFileCount
)]);
951
fileUploadStore.StartInteraction(1, [("File", InteractionHelpers.
MaxFileCount
)]);
981
fileUploadStore.StartInteraction(1, [("File", InteractionHelpers.
MaxFileCount
)]);
1034
fileUploadStore.StartInteraction(1, [("File", InteractionHelpers.
MaxFileCount
)]);
1212
fileUploadStore.StartInteraction(1, [("CertInput", InteractionHelpers.
MaxFileCount
)]);
Dashboard\InteractionFileUploadStoreTests.cs (2)
336
[InlineData(InteractionHelpers.
MaxFileCount
)]
547
int maxFileCount = InteractionHelpers.
MaxFileCount
)
InteractionServiceTests.cs (3)
1513
[InlineData(true, InteractionHelpers.
MaxFileCount
, true)]
1514
[InlineData(true, InteractionHelpers.
MaxFileCount
+ 1, false)]
1547
var maxFileCount = allowMultipleFiles ? InteractionHelpers.
MaxFileCount
: 1;