Skip to content

Commit

Permalink
♻️refactor(C#) format.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeioth committed Feb 9, 2024
1 parent 974c0af commit 1ebb9e0
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions lua/compiler/languages/cs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -161,18 +161,13 @@ function M.action(selected_option)
elseif selected_option == "option7" then
local task = overseer.new_task({
name = "- C# compiler",
strategy = {
"orchestrator",
tasks = { {
"shell",
name = "- Dotnet watch → .csproj",
cmd = "dotnet watch" .. -- compile
" && echo '" .. final_message .. "'" -- echo
}, },
},
})
strategy = { "orchestrator",
tasks = {{ "shell", name = "- Dotnet watch → .csproj",
cmd = "dotnet watch" .. -- compile
" && echo '" .. final_message .. "'" -- echo
},},},})
task:start()
vim.cmd("OverseerOpen")
vim.cmd("OverseerOpen")
end
end

Expand Down

0 comments on commit 1ebb9e0

Please sign in to comment.