Steps I take to create a C# WPF .NET desktop app in VS Code. Includes setup and troubleshooting tips
0:08 Setup
0:32 New Project
1:27 Code Update
2:18 Build
2:43 Final Notes
New Project command:
dotnet new wpf
Build command:
dotnet build
Build + run command:
dotnet run
Publish command:
dotnet publish -c Release -r win-x64 /p:PublishSingleFile=true /p:SelfContained=false
cs files:
https://drive.google.com/drive/folder...
XAML editor errors threads:
https://github.com/microsoft/vscode-d...
https://github.com/dotnet/vscode-csha...