Skip to content

Commit

Permalink
In Net Core 2.0 is implemented a more aggressive method for finalizat…
Browse files Browse the repository at this point in the history
…ion (see https://github.com/dotnet/coreclr/issues/5826#issuecomment-226574611) this helpers did not make sense.
  • Loading branch information
MBaldessari77 committed Feb 4, 2018
1 parent 9e5c220 commit a94bd30
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
7 changes: 0 additions & 7 deletions FxCommonStandard.Tests/TestDoubles/RootClass.cs

This file was deleted.

1 change: 1 addition & 0 deletions FxCommonStandard/Extensions/ExpressionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace FxCommonStandard.Extensions
{
public static class ExpressionExtensions
{
// ReSharper disable once UnusedParameter.Global
public static string GetMemberName<T, TProperty>(this T source, Expression<Func<T, TProperty>> expression)
{
return GetMemberName(expression);
Expand Down
1 change: 1 addition & 0 deletions FxCommonStandard/Services/FileSystemService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace FxCommonStandard.Services
{
// ReSharper disable once UnusedMember.Global
public class FileSystemService : IFileSystemService
{
public bool DirectoryExists(string path) { return Directory.Exists(path); }
Expand Down

0 comments on commit a94bd30

Please sign in to comment.