Skip to content

Commit ee8aff7

Browse files
authored
Fix build IAspectValidatorBuilder (#135)
* Fix build IAspectValidatorBuilder
1 parent 178eb27 commit ee8aff7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<VersionMajor>1</VersionMajor>
44
<VersionMinor>0</VersionMinor>
5-
<VersionPatch>0</VersionPatch>
5+
<VersionPatch>1</VersionPatch>
66
<VersionQuality></VersionQuality>
77
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
88
</PropertyGroup>

extras/src/AspectCore.Extensions.DependencyInjection/ServiceCollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ internal static IServiceCollection TryAddDynamicProxyServices(this IServiceColle
4343
throw new ArgumentNullException(nameof(services));
4444
}
4545

46-
//services.ConfigureDynamicProxy();
46+
services.ConfigureDynamicProxy();
4747

4848
services.TryAddTransient(typeof(IManyEnumerable<>), typeof(ManyEnumerable<>));
4949
services.TryAddScoped<IServiceResolver, MsdiServiceResolver>();

0 commit comments

Comments
 (0)