spiegelp / MaterialDesignExtensions

Material Design Extensions is based on Material Design in XAML Toolkit to provide additional controls and features for WPF apps
https://spiegelp.github.io/MaterialDesignExtensions/
MIT License
762 stars 122 forks source link

Language output #45

Closed seanmars closed 5 years ago

seanmars commented 5 years ago

Why always generate the uz-Latn-UZ and de dll? How to disable that?

spiegelp commented 5 years ago

@seanmars

  1. The resource files are necessary for the file system controls. I do not like to make different builds with and without localization support. It will be confusing and the next issue asks why the user interface is not in German like the demo app.

  2. The .csproj file lists resources and build actions for them. It is a XML file so you can open it with any text editor. You may conditionally include or exclude the files from the build, if a specified symbol is set inside the build configuration. Please look for tutorials on conditional builds.

SupunSam commented 2 years ago

Yes. It's too many unnecessary Folders. Just Include this in your CSProj File.

<PropertyGroup>   
    <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>