10 writes to ProjectPath
Aspire.Hosting (2)
ApplicationModel\ExecutableLaunchRecipe.cs (1)
588ProjectPath = projectMetadata.ProjectPath
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
29ProjectPath = projectMetadata.ProjectPath,
Aspire.Hosting.Tests (8)
Dcp\DcpExecutorTests.cs (7)
4247ProjectPath = "ProducerSuppliedPath", 5809mode => new ProjectLaunchConfiguration { ProjectPath = "/test/path", Mode = mode }, 7296return new ProjectLaunchConfiguration { ProjectPath = "AsyncProducerPath", Mode = mode, LaunchProfile = "async-profile" }; 7830.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "TestProjectWithLaunchSettings", Mode = mode }, "project"); 7860.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "TestProjectWithLaunchSettings", Mode = mode }, "project") 8667.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "/test/path", Mode = mode }, "project"); 8710.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "TestProjectWithLaunchSettings", Mode = mode }, "project");
DebugSupportExtensionsTests.cs (1)
148ProjectPath = "custom-path",
7 references to ProjectPath
Aspire.Hosting.Dotnet.Tests (1)
DotnetProjectResourceTests.cs (1)
553Assert.Equal(projectPath, launchConfig.ProjectPath);
Aspire.Hosting.Tests (6)
Dcp\DcpExecutorTests.cs (4)
4270Assert.Equal("ProducerSuppliedPath", plc!.ProjectPath); 7276Assert.Equal(projectPath, launchConfiguration.ProjectPath); 7319Assert.Equal("AsyncProducerPath", plc.ProjectPath); 7788Assert.Equal("TestProjectWithLaunchSettings", plc.ProjectPath);
DebugSupportExtensionsTests.cs (2)
107Assert.Equal(GetProjectPath(project.Resource), launchConfiguration.ProjectPath); 155Assert.Equal("custom-path", launchConfiguration.ProjectPath);