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?
Alas I figured it out after a lot of goooogling!!
In connect.cs:
public String SolutionPath() { return Path.GetDirectoryName(_applicationObject.Solution.FullName); }