emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/projectile 5703797bb2 2/2: Add project-file specs for dotn


From: ELPA Syncer
Subject: [nongnu] elpa/projectile 5703797bb2 2/2: Add project-file specs for dotnet projects, find dotnet .sln files
Date: Fri, 18 Nov 2022 05:59:31 -0500 (EST)

branch: elpa/projectile
commit 5703797bb2a400e962479e670086aca4241a77b7
Author: toshokan <toshokan@shojigate.net>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Add project-file specs for dotnet projects, find dotnet .sln files
---
 projectile.el | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/projectile.el b/projectile.el
index 62e1d40e62..1360644543 100644
--- a/projectile.el
+++ b/projectile.el
@@ -3174,6 +3174,12 @@ a manual COMMAND-TYPE command is created with
                                   :run "cabal run"
                                   :test-suffix "Spec")
 (projectile-register-project-type 'dotnet #'projectile-dotnet-project-p
+                                  :project-file '("?*.csproj" "?*.fsproj")
+                                  :compile "dotnet build"
+                                  :run "dotnet run"
+                                  :test "dotnet test")
+(projectile-register-project-type 'dotnet-sln '("src")
+                                  :project-file "?*.sln"
                                   :compile "dotnet build"
                                   :run "dotnet run"
                                   :test "dotnet test")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]