mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-06 02:30:33 -08:00
11 lines
230 B
Bash
Executable file
11 lines
230 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source VARS
|
|
|
|
#
|
|
echo "Setting up C# (omnisharp)"
|
|
|
|
git-repo "https://github.com/OmniSharp/omnisharp-server" omnisharp
|
|
cd omnisharp && xbuild
|
|
mv omnisharp/bin/Debug/OmniSharp.exe ./OmniSharp.exe
|
|
rm -rf omnisharp
|