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