Skip to content

Commit

Permalink
Add project-file specs for dotnet projects, find dotnet .sln files
Browse files Browse the repository at this point in the history
  • Loading branch information
toshokan authored and bbatsov committed Nov 18, 2022
1 parent 1654956 commit 5703797
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 5703797

Please sign in to comment.