From 190b44f6b540f3247e888c1884b7a90f7c7e2d77 Mon Sep 17 00:00:00 2001 From: Niklas Mollenhauer Date: Wed, 4 Feb 2026 23:11:10 +0100 Subject: [PATCH] Support .props files Resolves #123 --- src/CsProj/FileSystem/DotNetFileSystemProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CsProj/FileSystem/DotNetFileSystemProvider.cs b/src/CsProj/FileSystem/DotNetFileSystemProvider.cs index 0bc75d2..a5a9211 100644 --- a/src/CsProj/FileSystem/DotNetFileSystemProvider.cs +++ b/src/CsProj/FileSystem/DotNetFileSystemProvider.cs @@ -22,7 +22,7 @@ public IEnumerable List(string path) /// public bool IsCsProjectFile(string path) { - return File.Exists(path) && (path.EndsWith(".csproj") || path.EndsWith(".targets")); + return File.Exists(path) && (path.EndsWith(".csproj") || path.EndsWith(".targets") || path.EndsWith(".props")); } ///