Implemented interface member:
property
ProjectPath
Aspire.Hosting.IProjectMetadata.ProjectPath
19 references to ProjectPath
Aspire.Hosting.Dotnet (17)
DotnetProjectBuildCoordinator.cs (15)
39if (IsSupportedPath(projectMetadata.ProjectPath)) 42if (IsProjectFile(projectMetadata.ProjectPath)) 44projectMetadata.SetProjectPath(state.AddProject(projectMetadata.ProjectPath, projectMetadata.BuildConfiguration)); 293!IsSupportedPath(metadata.ProjectPath)) 349!IsProjectFile(entry.Metadata.ProjectPath) && 359.Where(entry => IsSupportedPath(entry.Metadata.ProjectPath)) 362.Where(entry => !File.Exists(entry.Metadata.ProjectPath)) 365.Where(entry => File.Exists(entry.Metadata.ProjectPath)) 427step.Projects.Select(entry => entry.Metadata.ProjectPath), 436entry.Metadata.ProjectPath, 499IsSupportedPath(metadata.ProjectPath) && 500File.Exists(metadata.ProjectPath)) 568.GroupBy(entry => entry.Metadata.ProjectPath, StringComparer.Ordinal) 588var projectDirectory = Path.GetDirectoryName(entry.Metadata.ProjectPath)!; 589if (!IsProjectFile(entry.Metadata.ProjectPath))
DotnetProjectHostingExtensions.cs (2)
266var workingDirectory = Path.GetDirectoryName(projectMetadata.ProjectPath) ?? builder.AppHostDirectory; 393var projectPath = projectMetadata.ProjectPath;
Aspire.Hosting.Dotnet.Tests (2)
DotnetProjectBuildCoordinatorTests.cs (2)
2108Assert.Single(first.Resource.Annotations.OfType<DotnetProjectMetadata>()).ProjectPath); 2111Assert.Single(second.Resource.Annotations.OfType<DotnetProjectMetadata>()).ProjectPath);