In this video, I show you how you to get started using .NET Core 3 by creating a new WPF application that runs on .NET Core 3.

Make sure you install the prerequisites:

  • https://github.com/dotnet/core-setup
  • https://github.com/dotnet/core-sdk

Update:

As of SDK build 9754 the Project markup has changed to the following:

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>netcoreapp3.0</TargetFramework>
    <UseWPF>true</UseWPF>
    <AssemblyName>MyCore3App</AssemblyName>
  </PropertyGroup>  
</Project>

 

 

Brian Lagunas

View all posts

13 comments

Follow Me

Follow me on Twitter, subscribe to my YouTube channel, and watch me stream live on Twitch.