11 writes to ProjectPath
Aspire.Hosting (2)
ApplicationModel\ExecutableLaunchRecipe.cs (1)
589ProjectPath = projectMetadata.ProjectPath
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
32ProjectPath = projectMetadata.ProjectPath,
Aspire.Hosting.Tests (9)
Dcp\DcpExecutorTests.cs (7)
4437ProjectPath = "ProducerSuppliedPath", 5999mode => new ProjectLaunchConfiguration { ProjectPath = "/test/path", Mode = mode }, 7486return new ProjectLaunchConfiguration { ProjectPath = "AsyncProducerPath", Mode = mode, LaunchProfile = "async-profile" }; 8020.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "TestProjectWithLaunchSettings", Mode = mode }, "project"); 8050.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "TestProjectWithLaunchSettings", Mode = mode }, "project") 8857.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "/test/path", Mode = mode }, "project"); 8900.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = "TestProjectWithLaunchSettings", Mode = mode }, "project");
Dcp\ExecutableLaunchPlanTests.cs (1)
104static _ => Task.FromResult(new ProjectLaunchConfiguration { ProjectPath = "/tmp/app.csproj" })));
DebugSupportExtensionsTests.cs (1)
152ProjectPath = "custom-path",
7 references to ProjectPath
Aspire.Hosting.Dotnet.Tests (1)
DotnetProjectResourceTests.cs (1)
588Assert.Equal(projectPath, launchConfig.ProjectPath);
Aspire.Hosting.Tests (6)
Dcp\DcpExecutorTests.cs (4)
4460Assert.Equal("ProducerSuppliedPath", plc!.ProjectPath); 7466Assert.Equal(projectPath, launchConfiguration.ProjectPath); 7509Assert.Equal("AsyncProducerPath", plc.ProjectPath); 7978Assert.Equal("TestProjectWithLaunchSettings", plc.ProjectPath);
DebugSupportExtensionsTests.cs (2)
107Assert.Equal(GetProjectPath(project.Resource), launchConfiguration.ProjectPath); 159Assert.Equal("custom-path", launchConfiguration.ProjectPath);