dotnet-bundle icon indicating copy to clipboard operation
dotnet-bundle copied to clipboard

Allow providing custom Info.plist entities

Open maxkatz6 opened this issue 4 years ago • 3 comments

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.

maxkatz6 avatar Jun 22 '21 03:06 maxkatz6

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>

x2bool avatar Jun 24 '21 06:06 x2bool

Any updates on this? need this to add NSDocumentsFolderUsageDescription

az-oolloow avatar Aug 18 '21 10:08 az-oolloow

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.

x2bool avatar Aug 18 '21 15:08 x2bool