Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 642 Bytes

readme.md

File metadata and controls

15 lines (12 loc) · 642 Bytes

Desktop Development with .NET Core

New Windows Forms application

  1. Create a new application using dotnet new winforms
  2. Run the application using dotnet run
  3. Inspect the code, modify and re-run if desired.

New WPF application

  1. Create a new application using dotnet new wpf
  2. Run the application using dotnet run
  3. Inspect the code, modify and re-run if desired.

Porting from .NET Framework to .NET Core

  1. Follow the steps in this tutorial.
  2. If time permits, follow this more in-depth tutorial: https://aka.ms/porting-to-netcore3