Solution failed to import: Import Solution Failed: CustomControl with name failed to import with error: Webresource content size is too big.
In Powerapps i was getting error during import my PCF control.
1. Open the cdsproj file and set the SolutionPackageType = Both. It will generate manage and unmanage solution.
<PropertyGroup>
<SolutionPackageType>Both</SolutionPackageType>
</PropertyGroup>
2. Run the build command with release parameter
msbuild /p:configuration=Release
Comments
Post a Comment