Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a WPF project without using Visual Studio? [closed]

How can I create (and run) a new WPF (Windows Presentation Foundation) project without having Visual Studio installed? My primary editor is VS code but it does not have the feature for creating new projects from templates?

like image 721
Mohammad Daliri Avatar asked May 24 '17 08:05

Mohammad Daliri


2 Answers

VS Code is designed more to host Console based apps such as .Net Core, .Net Framework Console, and Node.js. If you would like to develop WPF apps look for a different solution. I highly recommend using Visual Studio by Microsoft.

like image 103
LuvForAirplanes Avatar answered Oct 01 '22 03:10

LuvForAirplanes


write in terminal "dotnet new" and check the list. Class library is at "dotnet new classlib", but I'm interested in how to create WPF applications too, because there isn't that comand in the list.

like image 23
Marek Borecki Avatar answered Oct 01 '22 02:10

Marek Borecki