Missing NeutralResourcesLanguageAttribute on the assembly
Not disposing of the FolderBrowserDialog
This PR fixes both of these, adding en as the neutral language and a using to dispose of the FolderBrowserDialog. It also removes an extraneous string.Format that is not needed.
The NeutralResourcesLanguageAttribute is used by .NET to identify which language is stored in the assembly and doesn't have a satellite assembly.
We have 2 analyzer warnings:
NeutralResourcesLanguageAttribute
on the assemblyFolderBrowserDialog
This PR fixes both of these, adding
en
as the neutral language and ausing
to dispose of theFolderBrowserDialog
. It also removes an extraneousstring.Format
that is not needed.The
NeutralResourcesLanguageAttribute
is used by .NET to identify which language is stored in the assembly and doesn't have a satellite assembly.