From fa8eebd54243647038aec66f7efdf57c146c545f Mon Sep 17 00:00:00 2001 From: Suchiman Date: Mon, 29 Jan 2024 11:15:50 +0100 Subject: [PATCH] Fix copy paste typo I've accidentally copied the negation as well, leading to double negation --- src/dotnet-ef/Project.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet-ef/Project.cs b/src/dotnet-ef/Project.cs index 1953c0f1a46..a37a869dae5 100644 --- a/src/dotnet-ef/Project.cs +++ b/src/dotnet-ef/Project.cs @@ -69,7 +69,7 @@ bool FileMatches() { try { - return !File.ReadAllBytes(efTargetsPath).SequenceEqual(efTargets); + return File.ReadAllBytes(efTargetsPath).SequenceEqual(efTargets); } catch {