In #77 @forki pointed me to now Paket.VisualStudio already does what I want it to. But when I tried to "Add Package" on a project, I just got an error "The path is not of a legal form." No idea what path!
I don't know what path, and am going to try a hack locally, where in AddPackageProcess.ShowAddPackageDialog I wrap the construction of the FileInfo in a
catch (ArgumentException e)
{
throw new ArgumentException(e.ToString(), e);
}
so I can find out what path is illegal.
In #77 @forki pointed me to now Paket.VisualStudio already does what I want it to. But when I tried to "Add Package" on a project, I just got an error "The path is not of a legal form." No idea what path!
I don't know what path, and am going to try a hack locally, where in AddPackageProcess.ShowAddPackageDialog I wrap the construction of the FileInfo in a
so I can find out what path is illegal.