Skip to content

Instantly share code, notes, and snippets.

@jmarnold
Created October 11, 2011 04:33
Show Gist options
  • Save jmarnold/1277290 to your computer and use it in GitHub Desktop.
Save jmarnold/1277290 to your computer and use it in GitHub Desktop.
Bottles
public interface IPackageInfo
{
string Name { get; }
string Role { get; set; }
void LoadAssemblies(IAssemblyRegistration loader);
void ForFolder(string folderName, Action<string> onFound);
void ForData(string searchPattern, Action<string, Stream> dataCallback);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment