I have an add-in loaded, and a solution loaded, how would I find the folder path of that solution programmatically in C# in my addin?
you can use this code:
string solutionpath = Directory.GetParent(Application.ExecutablePath).Parent.Parent.Parent.FullName;
regards