13 lines
337 B
C#
13 lines
337 B
C#
using Fake.DomainDrivenDesign;
|
|
using Fake.Modularity;
|
|
|
|
namespace InterfaceForward.Domain.Shared
|
|
{
|
|
[DependsOn(typeof(FakeDomainDrivenDesignModule))]
|
|
public class InterfaceForwardDomainSharedModule : FakeModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
}
|
|
}
|
|
} |