Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.

#nullable enable

#if FEATURE_REMOTING
using System.Runtime.Remoting;
#else
Expand Down Expand Up @@ -55,7 +57,7 @@ public ICollection<OverloadDoc> GetOverloads(ObjectHandle value) {

// TODO: Figure out what is the right lifetime
public override object InitializeLifetimeService() {
return null;
return base.InitializeLifetimeService();
}
#endif
}
Expand Down
2 changes: 2 additions & 0 deletions src/core/Microsoft.Scripting/Runtime/DocumentationProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.

#nullable enable

using System.Collections.Generic;

using Microsoft.Scripting.Hosting;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.

#nullable enable

using System;
using System.IO;

Expand Down