alter <proj_name>.csproj

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
darkdragon
User
Posts: 148

alter <proj_name>.csproj

Post 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


MichaelG
User
Posts: 1095

Post by MichaelG »

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

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

darkdragon
User
Posts: 148

Post by darkdragon »

Thanks!
Finally, the published directory looks cleaner!


Post Reply