Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 2.03 KB

developer-guide.md

File metadata and controls

48 lines (32 loc) · 2.03 KB

Developer Guide

The following document describes the setup and workflow that is recommended for working on the Windows Forms project. It assumes that you have read the Contributing Document.

The Issue Guide describes our approach to using GitHub issues.

Machine Setup

Follow the Building CoreFX on Windows instructions. In particular, Visual Studio 2019 Preview is required to develop on .NET Core.

Windows Forms requires the following workloads and components be selected when installing Visual Studio:

  • Required Workloads:
    • .NET Desktop Development
    • Desktop development with C++
  • Required Individual Components:
    • C++/CLI support
    • Windows 10 SDK

Workflow

We use the following workflow for building as well as testing features and fixes.

You first need to Fork and Clone this WinForms repository. This is a one-time task.

  1. Build the repository.

  2. Debug the change, as needed.

  3. Test the change, to validate quality.

More Information