Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Latest commit

 

History

History

Desktop-Dev

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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