Skip to content

Commit

Permalink
Don't need folder exclusions for code that's been deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Jun 14, 2024
1 parent e546e93 commit dd2dc8b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tools/builder/models/BuildContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,5 @@ namespace Xunit.BuildTools.Models;

public partial class BuildContext
{
public partial IReadOnlyList<string> GetSkippedAnalysisFolders() =>
new[]
{
"src/xunit.runner.visualstudio/Utility/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions",
"src/xunit.runner.visualstudio/Utility/AssemblyResolution/Microsoft.Extensions.DependencyModel"
};
public partial IReadOnlyList<string> GetSkippedAnalysisFolders() => [];
}

0 comments on commit dd2dc8b

Please sign in to comment.