Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
adegeo committed Nov 21, 2024
1 parent 8c1090f commit 73a3bd1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions windowsforms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,24 @@

## Porting apps from .NET Framework

If you want to first understand your existing application's readiness for migrating from .NET Framework to .NET, use the [.NET Upgrade Assistant](https://learn.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-how-to-analyze). This tool analyzes projects and generates a report that you can browse to get more information about the upgrade.
If you want to first understand your existing application's readiness for migrating from .NET Framework to .NET, use the [.NET Upgrade Assistant](https://learn.microsoft.com/dotnet/core/porting/upgrade-assistant-how-to-analyze). This tool analyzes projects and generates a report that you can browse to get more information about the upgrade.

To learn how to migrate a Windows Forms app, see [Upgrade a .NET Framework Windows Forms desktop app to .NET](https://learn.microsoft.com/en-us/dotnet/desktop/winforms/migration/).
To learn how to migrate a Windows Forms app, see [Upgrade a .NET Framework Windows Forms desktop app to .NET](https://learn.microsoft.com/dotnet/desktop/winforms/migration/).

## Create Windows Forms app in the command line

To create a new application you can use the `dotnet new` command, using the new templates for Windows Forms.

In your favorite console run:
To create a new application you can use the `dotnet new` command, using the new templates for Windows Forms. Open a terminal use use the following commands:

```cmd
dotnet new winforms -o MyWinFormsApp
cd MyWinFormsApp
dotnet run
```

## Create a Windows Forms app in Visual Studio

To create a new app in Visual Studio, see [Tutorial: Create a Windows Forms app with .NET](https://learn.microsoft.com/dotnet/desktop/winforms/get-started/create-app-visual-studio?view=netdesktop-9.0).

## Filing issues and getting help

You can file Windows Forms related issues in the [dotnet/winforms repo](https://github.com/dotnet/winforms/issues).

0 comments on commit 73a3bd1

Please sign in to comment.