1.检查模型是否存在重复的字段,eg: public class AggregateRoot { public System.Guid Guid { get; set; } } public partial class User : AggregateRoot { public int ID { get; set; } //在父类已经定义了Guid,子类又重新定义,故报此错误,元素重复public System.Guid Guid { get; set; } public int DepId {…
一.使用背景 在涉及Azure service Fabric的自动化应用场景中,依赖于Service Fabric的Azure Powershell cmdlets,我们可以使用Jenkins能实现cicd,当然VSTS也是一种选择. 二.报错现象 在Jenkins的Console output中,有如下报错: 'Connect-ServiceFabricCluster' is not recognized 三.报错原因 官网中是这么描述的: If you try to run any of t…