1 instantiation of ProjectLaunchRequest
Microsoft.WebTools.AspireService.Tests (1)
RunSessionRequest.cs (1)
76return new ProjectLaunchRequest()
7 references to ProjectLaunchRequest
Microsoft.WebTools.AspireService.Tests (7)
AspireServerService.cs (1)
328var projectLaunchRequest = await context.GetProjectLaunchInformationAsync(_shutdownCancellationTokenSource.Token);
HttpContextExtensions.cs (1)
45public static async Task<ProjectLaunchRequest?> GetProjectLaunchInformationAsync(this HttpContext context, CancellationToken cancelToken)
IAspireServerEvents.cs (1)
27ValueTask<string> StartProjectAsync(string dcpId, ProjectLaunchRequest projectLaunchInfo, CancellationToken cancellationToken);
Mocks\IAspireServerEventsMock.cs (2)
20setup = MockObject.Setup(x => x.StartProjectAsync(dcpId, It.Is<ProjectLaunchRequest>(plr => plr.Arguments == null), It.IsAny<CancellationToken>())); 24setup = MockObject.Setup(x => x.StartProjectAsync(dcpId, It.IsAny<ProjectLaunchRequest>(), It.IsAny<CancellationToken>()));
RunSessionRequest.cs (1)
65public ProjectLaunchRequest? ToProjectLaunchInformation()
RunSessionRequestTests.cs (1)
37var info = request.ToProjectLaunchInformation();