How to create a WPF project without using Visual Studio?

Viewed 38405

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?

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.

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.

Related