Class SingleAssembly
A simple wrapper which is equivalent to a collection with a single Assembly
Implements
Inherited Members
Namespace: FluentMigrator.Infrastructure
Assembly: FluentMigrator.Abstractions.dll
Syntax
public class SingleAssembly : IAssemblyCollection
  Constructors
SingleAssembly(Assembly)
Declaration
public SingleAssembly(Assembly assembly)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Assembly | assembly | 
Properties
Assemblies
The Assemblies contained in this collection
Declaration
public Assembly[] Assemblies { get; }
  Property Value
| Type | Description | 
|---|---|
| Assembly[] | 
Methods
GetExportedTypes()
The result of this method is equivalent to calling GetExportedTypes on each Assembly in Assemblies.
Declaration
public Type[] GetExportedTypes()
  Returns
| Type | Description | 
|---|---|
| Type[] | 
GetManifestResourceNames()
Gets a array of resources defined in each of the assemblies that are contained in this collection, plus which assembly it is defined in.
Declaration
public ManifestResourceNameWithAssembly[] GetManifestResourceNames()
  Returns
| Type | Description | 
|---|---|
| ManifestResourceNameWithAssembly[] | An array of value pairs of resource name plus assembly.  |