Function: projectile-dotnet-sln-project-p
projectile-dotnet-sln-project-p is a byte-compiled function defined in
projectile.el.
Signature
(projectile-dotnet-sln-project-p &optional DIR)
Documentation
Check if a project contains a .NET solution project marker.
When DIR is specified it checks DIR's project, otherwise it acts on the current project.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-dotnet-sln-project-p (&optional dir)
"Check if a project contains a .NET solution project marker.
When DIR is specified it checks DIR's project, otherwise
it acts on the current project."
(or (projectile-verify-file-wildcard "?*.sln" dir)
(projectile-verify-file-wildcard "?*.slnx" dir)))