1 write to ProjectPath
aspire (1)
Configuration\IntegrationReference.cs (1)
60return new IntegrationReference { Name = name, ProjectPath = projectPath };
10 references to ProjectPath
aspire (4)
Configuration\IntegrationReference.cs (1)
30public bool IsProjectReference => ProjectPath is not null;
Projects\DotNetBasedAppHostServerProject.cs (1)
188new XAttribute("Include", integration.ProjectPath!),
Projects\GuestAppHostProject.cs (1)
1253sb.Append(integration.Version ?? integration.ProjectPath ?? "");
Projects\PrebuiltAppHostServer.cs (1)
316new XAttribute("Include", p.ProjectPath!)))));
Aspire.Cli.Tests (6)
Configuration\IntegrationReferenceTests.cs (4)
18Assert.Null(reference.ProjectPath); 29Assert.Equal("/path/to/MyIntegration.csproj", reference.ProjectPath); 56Assert.EndsWith(".csproj", projectRefs[0].ProjectPath!); 75Assert.True(Path.IsPathRooted(projectRef.ProjectPath!));
Projects\GuestAppHostProjectTests.cs (2)
239Assert.NotNull(projectRef.ProjectPath); 240Assert.EndsWith(".csproj", projectRef.ProjectPath);