We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 178eb27 commit ee8aff7Copy full SHA for ee8aff7
2 files changed
build/version.props
@@ -2,7 +2,7 @@
2
<PropertyGroup>
3
<VersionMajor>1</VersionMajor>
4
<VersionMinor>0</VersionMinor>
5
- <VersionPatch>0</VersionPatch>
+ <VersionPatch>1</VersionPatch>
6
<VersionQuality></VersionQuality>
7
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
8
</PropertyGroup>
extras/src/AspectCore.Extensions.DependencyInjection/ServiceCollectionExtensions.cs
@@ -43,7 +43,7 @@ internal static IServiceCollection TryAddDynamicProxyServices(this IServiceColle
43
throw new ArgumentNullException(nameof(services));
44
}
45
46
- //services.ConfigureDynamicProxy();
+ services.ConfigureDynamicProxy();
47
48
services.TryAddTransient(typeof(IManyEnumerable<>), typeof(ManyEnumerable<>));
49
services.TryAddScoped<IServiceResolver, MsdiServiceResolver>();
0 commit comments