Skip to content

Commit

Permalink
Merge pull request #851 from OmniSharp/renovate/dryioc
Browse files Browse the repository at this point in the history
Update dependency DryIoc.Internal to v5.4.2
  • Loading branch information
JoeRobich authored Oct 25, 2023
2 parents 5032437 + 3ba26f9 commit 31dcf23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@
<PackageVersion Include="Nerdbank.Streams" Version="2.10.72" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.7.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
<PackageVersion Include="DryIoc.Internal" Version="5.0.1" />
<PackageVersion Include="DryIoc.Internal" Version="5.4.2" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/JsonRpc/JsonRpcServerContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static IContainer Create(IServiceProvider? outerServiceProvider)
rules => rules.WithUnknownServiceResolvers(
request => {
var value = outerServiceProvider.GetService(request.ServiceType);
return value == null ? null : (Factory) InstanceFactory.Of(value, Reuse.Transient);
return value == null ? null : (Factory) InstanceFactory.Of(value);
}
)
);
Expand Down

0 comments on commit 31dcf23

Please sign in to comment.