I am able to install/deploy an app to a sharepoint site using the code below
var appManager = new AppManager(context); var apps = appManager.GetAvailable(); var foundApp = apps.Where(a => a.Id == FeatureId).FirstOrDefault(); var installAppAsync = await appManager.InstallAsync(foundApp); However, one particular app needs to be tied to a specific document library when added to a site, how can I specify these parameters when installing the app?