Setting up .NET for XUnit

1 · Shane Mulligan · Oct. 14, 2019, 11 a.m.
I recently have been applying for jobs and so I decided to set up a modern .NET environment on Ubuntu with emacs and look into a unit testing suite called XUnit. Setup Emacs omnisharp package installation 1 (package-install 'omnisharp) c# configuration 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 (progn ;; c sharp ;; (add-hook 'csharp-mode-hook 'omnisharp-mode) ;; (add-hook 'csharp-mode-hook #'company-mode) ;; (add-hook 'csharp-mode-hook #'flycheck-mode...