Skip to content

Commit 9179e7a

Browse files
authored
Fixed a bug where the DomainEventConfigurator was invoked based on the existence of entities instead of domain events. (#24)
* Fixed a bug where the DomainEventConfigurator was invoked based on the existence of entities instead of domain events. * Updated the version prefix.
1 parent 855ce48 commit 9179e7a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

DomainModeling.Generator/Configurators/EntityFrameworkConfigurationGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private static Generatable GetAssembliesContainingDomainModelConfigurators((Comp
107107
ReferencedAssembliesWithIdentityConfigurator = assembliesContainingIdentityConfigurator.OrderBy(name => name).ToImmutableArray(),
108108
ReferencedAssembliesWithWrapperValueObjectConfigurator = assembliesContainingWrapperValueObjectConfigurator.OrderBy(name => name).ToImmutableArray(),
109109
ReferencedAssembliesWithEntityConfigurator = assembliesContainingEntityConfigurator.OrderBy(name => name).ToImmutableArray(),
110-
ReferencedAssembliesWithDomainEventConfigurator = assembliesContainingEntityConfigurator.OrderBy(name => name).ToImmutableArray(),
110+
ReferencedAssembliesWithDomainEventConfigurator = assembliesContainingDomainEventConfigurator.OrderBy(name => name).ToImmutableArray(),
111111
};
112112
return result;
113113
}

DomainModeling/DomainModeling.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,22 @@
1717
</ItemGroup>
1818

1919
<PropertyGroup>
20-
<VersionPrefix>3.0.1</VersionPrefix>
20+
<VersionPrefix>3.0.2</VersionPrefix>
2121
<Description>
2222
A complete Domain-Driven Design (DDD) toolset for implementing domain models, including base types and source generators.
2323

2424
https://github.com/TheArchitectDev/Architect.DomainModeling
2525

2626
Release notes:
2727

28+
3.0.2:
29+
30+
- Bug fix.
31+
32+
3.0.1:
33+
34+
- Bug fix.
35+
2836
3.0.0:
2937

3038
- BREAKING: Platform support: Dropped support for .NET 5.0 (EOL).

0 commit comments

Comments
 (0)