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