Page 1 of 1

alter <proj_name>.csproj

Posted: Fri Jul 15, 2022 5:04 am
by darkdragon

Hello,

How can I alter the <proj_name>.csproj in order to add a line in <PropertyGroup>:

<SatelliteResourceLanguages>en</SatelliteResourceLanguages>

I want to get rid of the localized Microsoft.CodeAnalysis.*.resources.dll files


Re: alter <proj_name>.csproj

Posted: Fri Jul 15, 2022 7:48 am
by MichaelG

You can see Using User Code -> Project Settings. Try

projectFile.setProperty("SatelliteResourceLanguages", "en");

Re: alter <proj_name>.csproj

Posted: Fri Jul 15, 2022 7:54 pm
by darkdragon

Thanks!
Finally, the published directory looks cleaner!