2 writes to AllProjectFileCandidates
aspire (2)
BackchannelJsonSerializerContext.AppHostProjectSearchResultPoco.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Commands.AppHostProjectSearchResultPoco(){ SelectedProjectFile = (string)args[0],
AllProjectFileCandidates
= (global::System.Collections.Generic.List<string>)args[1] },
Commands\ExtensionInternalCommand.cs (1)
55
AllProjectFileCandidates
= result.AllProjectFileCandidates.Select(f => f.FullName).ToList()
7 references to AllProjectFileCandidates
aspire (2)
BackchannelJsonSerializerContext.AppHostProjectSearchResultPoco.g.cs (2)
78
Getter = static obj => ((global::Aspire.Cli.Commands.AppHostProjectSearchResultPoco)obj).
AllProjectFileCandidates
,
111
ListStringSerializeHandler(writer, ((global::Aspire.Cli.Commands.AppHostProjectSearchResultPoco)value).
AllProjectFileCandidates
);
Aspire.Cli.Tests (5)
Commands\ExtensionInternalCommandTests.cs (5)
92
Assert.Single(searchResult.
AllProjectFileCandidates
);
93
Assert.Equal(projectFile.FullName, searchResult.
AllProjectFileCandidates
[0]);
138
Assert.Equal(2, searchResult.
AllProjectFileCandidates
.Count);
139
Assert.Contains(projectFile1.FullName, searchResult.
AllProjectFileCandidates
);
140
Assert.Contains(projectFile2.FullName, searchResult.
AllProjectFileCandidates
);