aboutsummaryrefslogtreecommitdiff
path: root/projectile.el
diff options
context:
space:
mode:
authortoshokan <toshokan@shojigate.net>2022-11-12 11:39:56 -0500
committerBozhidar Batsov <bozhidar@batsov.dev>2022-11-18 12:35:49 +0200
commit5703797bb2a400e962479e670086aca4241a77b7 (patch)
treeaeb1b74d5d3e2c611c3adf6a1a581f4b576cf49a /projectile.el
parent1654956cfed4691f3e9553d91e573efe0be8646a (diff)
Add project-file specs for dotnet projects, find dotnet .sln files
Diffstat (limited to 'projectile.el')
-rw-r--r--projectile.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/projectile.el b/projectile.el
index 62e1d40..1360644 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")