Skip to content

Commit 6dde91d

Browse files
committed
fix(UI) C# compiler was reported as C compiler for dotnet.
1 parent d1d3be2 commit 6dde91d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/compiler/languages/cs.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ function M.action(selected_option)
141141
end
142142
elseif selected_option == "option5" then
143143
local task = overseer.new_task({
144-
name = "- C compiler",
144+
name = "- C# compiler",
145145
strategy = { "orchestrator",
146146
tasks = {{ "shell", name = "- Dotnet build & run → .cproj",
147147
cmd = "dotnet run" .. -- compile and run
@@ -151,7 +151,7 @@ function M.action(selected_option)
151151
vim.cmd("OverseerOpen")
152152
elseif selected_option == "option6" then
153153
local task = overseer.new_task({
154-
name = "- C compiler",
154+
name = "- C# compiler",
155155
strategy = { "orchestrator",
156156
tasks = {{ "shell", name = "- Dotnet build → .csproj",
157157
cmd = "dotnet build" .. -- compile

0 commit comments

Comments
 (0)