-
-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Add one .resx (culture neutral). Then add a localized version of it.
Result: compilation errors from duplicate Strings members
Expected: only the culture neutral resource should be considered for codegen. WithCulture on the items can be used to filter, such as:
<Target Name="_RemoveCulturedResxFromStrings" AfterTargets="_InjectRexAdditionalFiles;_InjectResxAdditionalFiles" BeforeTargets="GenerateMSBuildEditorConfigFileShouldRun">
<ItemGroup>
<ResxCode Remove="@(ResxCode -> WithMetadataValue('WithCulture', 'true'))" />
<AdditionalFiles Remove="@(AdditionalFiles -> WithMetadataValue('WithCulture', 'true'))" />
</ItemGroup>
</Target>
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working