i'm not sure i'm trying possible here goes...
i'm looking create library of services use within mvvmcross applications, majority of services use plugins either written me or third party.
rather having applications using service library go , individual nuget packages these plugin dependencies i'd prefer if either,
1) plugins built library assembly.
2) or supply plugins required library in single nuget package 1 app has pull in use library.
my question can plugins wrapped this?
you can create nuget package service library adds plugins dependencies. when user installs package, nuget automatically install plugin packages well.
for example:
<dependencies> <dependency id="mvvmcross.hottuna.plugin.file" version="3.5.1" /> <dependency id="mvvmcross.hottuna.plugin.messenger" version="3.5.1" /> </dependencies> see nuspec documentation more info.
Comments
Post a Comment