Function: projectile-dotnet-project-p

projectile-dotnet-project-p is a byte-compiled function defined in projectile.el.

Signature

(projectile-dotnet-project-p &optional DIR)

Documentation

Check if a project contains a .NET 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-project-p (&optional dir)
  "Check if a project contains a .NET project marker.
When DIR is specified it checks DIR's project, otherwise
it acts on the current project."
  (or (projectile-verify-file-wildcard "?*.csproj" dir)
      (projectile-verify-file-wildcard "?*.fsproj" dir)))