Remove Microsoft.ServiceFabric.Internal references #377
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
Microsoft.ServiceFabric.Internal.dll
was introduced years ago as an assembly meant to be used by the Service Fabric SDK packages instead of theSystem.Fabric.dll
. TheMicrosoft.ServiceFabric.Internal
assembly includes a subset of the types fromSystem.Fabric
with the exception of a few internal types.However, both of these DLLs are now included in the
Microsoft.ServiceFabric
NuGet package and most Service Fabric .NET services, reference both of them. With the original intent abandoned, there is no clear value in keeping theMicrosoft.ServiceFabric.Internal.dll
. Removing it from the Service Fabric Runtime and SDK eliminates the cost of maintaining it and reduces unnecessary complexity and cognitive load on the engineers.See Windows Fabric PR for more.