본문 바로가기
Programming/C#

C#(WPF) - VSCode에서 GUI 시작하기

by Wilkyway 2021. 10. 22.
반응형

1. Dotnet Core 설치

.Net Core SDK를 다운로드 받아 설치합니다.

.Net Core 3.1 이후에는 .Net 5에 통합되었으므로 최신 버전은 .Net 5 이상을 다운받아 설치하면 됩니다.

 

[다운로드 경로]

 

 

Download .NET (Linux, macOS, and Windows)

Free downloads for building and running .NET apps on Linux, macOS, and Windows. Runtimes, SDKs, and developer packs for .NET Framework, .NET, and ASP.NET.

dotnet.microsoft.com

 

2. 생성

dotnet new wpf
...or...
dotnet new winforms
...or... 
dotnet new console

 

3. 실행

dotnet run

 

 

 
반응형

댓글