简体   繁体   English

动态365 crm托管解决方案不覆盖Javascript Web资源

[英]dynamics 365 crm managed solution not overriding Javascript webresource

I have modified a javascript file (myfile.js) in my development environment. 我在开发环境中修改了一个javascript文件(myfile.js)。 After I export it as a patch managed solution and import into my target CRM environment, the changes made to that file is not reflected. 在将其导出为补丁程序管理的解决方案并导入到我的目标CRM环境之后,对该文件所做的更改将不会反映出来。

There has been no update to that file directly in the target environment (which we know of). 在目标环境(我们知道)中没有直接更新该文件。 The file was originally imported together with other components in a previous managed solution. 该文件最初与以前的托管解决方案中的其他组件一起导入。 The update was created as a patch off the original solution (The publishers are the same). 此更新是作为原始解决方案的补丁创建的(发布者相同)。

After importing the log file shows that it was imported successfully. 导入后,日志文件显示它已成功导入。 I have republished as few times to be sure it applied the change. 我已经重新发布了几次,以确保它应用了更改。

Any advise on what might be causing this will be appreciated. 任何可能导致此问题的建议将不胜感激。 thanks 谢谢

Please make sure that you have attribute solutionaction in Library tag. 请确保在“库”标记中具有属性solutionaction

Example: 例:

 <formLibraries>
     <Library name="your_resource_file" libraryUniqueId="{GUID}" solutionaction="Added" />
 </formLibraries>

Allowed values are: 允许的值为:

<xs:simpleType name="solutionactionType">
  <xs:restriction base="xs:string">
    <xs:enumeration value="Added" />
    <xs:enumeration value="Removed" />
    <xs:enumeration value="Modified" />
  </xs:restriction>
</xs:simpleType > 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Dynamics Crm 365 webapi - 通过 javascript 发布网络资源 - Dynamics Crm 365 webapi - publish webresource via javascript Dynamics 365 CRM 插件 - 无法在托管解决方案中设置两个选项字段 NULL - Dynamics 365 CRM Plugin - Unable to set two option field NULL in managed solution 在Dynamics CRM上使用工作流触发JScript Web资源 - Trigger a JScript webresource with a workflow on Dynamics CRM 如何在 Dynamics CRM 中操作 HTML-Web 资源 - How to manipulate a HTML-Webresource in Dynamics CRM 使用javaScript访问Dynamics CRM / 365表单中的其他实体属性 - Accessing Other Entities Attributes in Dynamics CRM/365 Forms with javaScript Microsoft Dynamics CRM 365通过JavaScript异步调用操作 - Microsoft Dynamics CRM 365 calling an action via JavaScript asynchronously 使用 JavaScript 为 CRM Dynamics 365 隐藏/删除选项设置值? - Hide/remove Option set value using JavaScript for CRM Dynamics 365? 在Dynamics 365 CRM App中导航 - Navigating in the dynamics 365 CRM App Dynamics CRM动态获取HTML Webresource父控件 - Dynamics CRM Dynamically getting HTML webresource parent control 如何在MS Dynamics CRM Online中单击按钮时重定向到任何Web资源? - How to redirect to any webresource on button click in MS Dynamics CRM Online?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM