본문 바로가기
IT/c#

c# 시작!

by 가능성1g 2024. 12. 29.
반응형

의외로 c# 카타고리가 없었다.. 그동안 자주? 공부를 시도했었던거 같은데, 정리를 안했나 보다.

 

회사의 환경(?) 에 맞추어 dotnet7 로 환경은 구성하겠다. 

os : Rocky Linux 8.10

dotnet-sdk-7.0.x86_64

 

패키지 설치 명령어로 간단하게 설치 했다.

sudo dnf install dotnet-sdk-7.0.x86_64

 

개발툴은 vim 으로 정했다.  아래 링크로 vim 을 셋팅한다.

 

Setting up a C# Development Environment with Vim on Debian | by Skyl3r | Medium

 

Setting up a C# Development Environment with VIM on Debian

A short guide to getting code completion, code actions, and other IDE like features for working with C# in Vim

medium.com

 

Hello World! 를 만들어 보자

mkdir hello
cd hello
dotnet new console
dotnet run

 

준비완료!

반응형