본문 바로가기
개발/C#

Visual Studio Code 로 .Net core 앱 콘솔 어플리케이션 만들기

by 혈중마라농도 2021. 11. 22.

Visual Studio Code로 앱 콘솔 어플리케이션 디버깅 환경구성을 해보겠습니다.

1. Visual Studio Code를 설치
https://code.visualstudio.com/Download

Visual Studio Code 공식 홈페이지에서 다운로드 한다.

 

Download Visual Studio Code - Mac, Linux, Windows

Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.

code.visualstudio.com

 

제가 설치할 때에는 VSCodeUserSetup-x64-1.62.3.exe 입니다.

설치중
설치중2
설치가 끝나고 왼쪽 아래에 확장 클릭

1.62.3 버전에서는 C#이 기본으로 설치가 됩니다. C#이 설치가 안되어 있다면 설치하시면 됩니다.

2. .NET SDK 6.0 설치
https://dotnet.microsoft.com/download/dotnet/6.0

 

Download .NET 6.0 (Linux, macOS, and Windows)

.NET 6.0 downloads for Linux, macOS, and Windows. .NET is a free, cross-platform, open-source developer platform for building many different types of applications.

dotnet.microsoft.com

.NET SDK 설치 위치

저는 SDK 6.0.100 윈도우 x64버전을 설치합니다. 실제로는 ASP.NET Core Runtime 6.0.0 만 필요하므로 우측에서 다운받아서 설치하셔도 됩니다.

.NET SDK 6.0.100 (x64) 설치
설치완료

3. Visual Studio Code를 실행합니다.
실행 후 "폴더 열기"를 통해 프로젝트를 만들 곳을 지정합니다.
저는 임의로 "D:\프로젝트\2021\Test"로 생성하였습니다.
생성 후 보기 > 터미널 ( Ctrl + ` ) 클릭 후
dotnet new console --framework net6.0
위의 커맨드를 실행합니다. 실행이 되지 않는다면, .NET SDK가 제대로 설치되지 않았다는 얘기입니다.

.NET core 프로젝트 생성

4. Program.cs 파일을 열어서 편집합니다.
namespace HelloWorld {
 class Program {
  static void Main(string[] args) {
    Console.WriteLine(
"Hello World!");
  }
 }
}

5. 터미널에서 실행합니다.
dotnet run
아래처럼 Hello World! 가 표시 된다면 어플리케이션 앱 디버깅 환경은 구축한 겁니다.
단축키 F5 로 디버깅을 바로 할수도 있습니다.

콘솔에서 실행

 

반응형

'개발 > C#' 카테고리의 다른 글

C# 로컬IP(서버IP)정보 조회  (0) 2022.01.06
C# 파일사이즈 Long -> String 변환  (0) 2022.01.06
ASP.net 클라이언트IP 얻기  (0) 2022.01.06
c# 양력 -> 음력 변환  (0) 2021.12.05
C# 자주쓰는 ToString 변환  (0) 2021.11.25

댓글