I have a PCF Component whose version is "1.0.0". I imported the solution in my tenant. If I want to make modifications to my component, without having to import the solution again, how is it possible? I tried to change the version of the manifest file and tried, but the solution wasn't getting updated. Does anybody have a solution to this?
<?xml version="1.0" encoding="utf-8" ?>
<manifest>
<control namespace="pcfcontrol" constructor="CustomLabelControlv1" version="2.0.0" display-name-key="CustomLabelControl " description-key="CustomLabelControl description" control-type="standard">
<type-group name = "Strings">
<type>SingleLine.Text</type>
<type>SingleLine.URL</type>
<type>SingleLine.TextArea</type>
<type>Multiple</type>
</type-group>
<property name="sampleProperty" display-name-key="InternalName_Display_Key" description-key="InternalName_Desc_Key" of-type-group="Strings" usage="bound" required="true" />
<property name="fieldName" display-name-key="fieldName" description-key="Name of the field" of-type-group="Strings" usage="input" required="true"/>
<feature-usage>
<uses-feature name = "WebAPI" required = "true"/>
</feature-usage>
<resources>
<code path="index.ts" order="1"/>
<css path = "css/LabelCSS.css" order ="1"/>
</resources>
</control>
</manifest>