Skip to content

Commit af9e4a3

Browse files
Don't force the use of VS 2019 yet
1 parent 9dec7e4 commit af9e4a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Libraries/SmartStore.Core/Infrastructure/DependencyManagement/ContainerManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public bool TryResolve(Type serviceType, ILifetimeScope scope, out object instan
154154
[DebuggerStepThrough]
155155
public bool TryResolve<T>(ILifetimeScope scope, out T instance)
156156
{
157-
instance = default;
157+
instance = default(T);
158158

159159
try
160160
{

0 commit comments

Comments
 (0)