Hi @heyangben ,
There may be some resource files for localization with the resx extension and the filename ending in the language (eg Resource1.en-us.resx). When the project is built, it generates the folder and contains the culture dll files. Or Nuget references Microsoft.Expression.Interactions.dll and System.Windows.Interactivity.dll, Microsoft.VisualStudio.Web.CodeGeneration.Design, etc.
https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#satelliteresourcelanguages
If you don't need these items, you can exclude them from the project.
Add this line to your *.csproj
<PropertyGroup>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.