Allow providing custom Info.plist entities
With this really helpful library application does not handles Info.plist file creation directly, thus it make create some difficulties when we actually need to add additional properties that weren't part of bundle information. To avoid unnecessary xml rewrites I would want to set additional msbuild properties (items group with type info?) or use additional external configuration or Info.plist template.
Yes, I think we could go with something like this: https://github.com/egramtel/dotnet-bundle/pull/8/files
<ItemGroup>
<CustomProperty Include="name">
<CustomPropertyName>name</CustomPropertyName>
<CustomPropertyValue>value</CustomPropertyValue>
</CustomProperty>
<CustomProperty Include="name2">
<CustomPropertyName>name2</CustomPropertyName>
<CustomPropertyValue>value2</CustomPropertyValue>
</CustomProperty>
</ItemGroup>
Any updates on this? need this to add NSDocumentsFolderUsageDescription
Hi! I don't know when I will be able to work on this. But I'll definitely accept Pull Request to fix this issue.