Visual Studio Community 2022 problem with xml comments
I have a question concerning XML Comments in Visual Studio. I have an XML Comment above a Method(Get All Customers) in a project in my solution. For some reason I dont get any intellisense when I hover above the name of the method I have a comment on in another project where that Method is being called. I am wondering if this issue has something to do with me reading a comment on a Method thats in another project but I have referenced that project so I am not sure what could be causing this problem.
var customers = _wrkData.GetAllCustomers(SearchText);
///<summary>
///Gets All Customers
///</summary>
///<param name="customers"> Of Type Customer</param>
///<returns> List of Customers</returns>
public void GetAllCustomers(Customer customers)
{
}