fixed creeping lint errors (#1302)

This commit is contained in:
Andy (Steve) De George
2022-02-07 14:55:46 -06:00
committed by GitHub
parent c2384a837e
commit 172e68963a
4 changed files with 12 additions and 12 deletions
@@ -20,7 +20,7 @@ Add a new form with Visual Studio.
:::image type="content" source="media/how-to-add/right-click.png" alt-text="Right click solution explorer to add new form to windows forms project":::
01. In the **Name** box, type a name for your form, such as *MyNewForm*. Visual Studio will provide a default and unique name that you may use.
01. In the **Name** box, type a name for your form, such as _MyNewForm_. Visual Studio will provide a default and unique name that you may use.
:::image type="content" source="media/how-to-add/new-form-dialog.png" alt-text="Add item dialog in visual studio for windows forms":::
@@ -303,7 +303,7 @@ If your app has an _App.config_ file, remove the `<supportedRuntime>` element:
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
```
There are some things you should consider with the *App.config* file. The *App.config* file in .NET Framework was used not only to configure the app, but to configure runtime settings and behavior, such as logging. The *App.config* file in .NET 5+ (and .NET Core) is no longer used for runtime configuration. If your *App.config* file has these sections, they won't be respected.
There are some things you should consider with the _App.config_ file. The _App.config_ file in .NET Framework was used not only to configure the app, but to configure runtime settings and behavior, such as logging. The _App.config_ file in .NET 5+ (and .NET Core) is no longer used for runtime configuration. If your _App.config_ file has these sections, they won't be respected.
## Add the compatibility package