WixSharp.Project.CalculateProductId C# (CSharp) 메소드

CalculateProductId() 공개 정적인 메소드

Calculates the product id.
public static CalculateProductId ( System.Guid productGuid, System.Version version ) : System.Guid
productGuid System.Guid The product GUID.
version System.Version The version.
리턴 System.Guid
        public static Guid CalculateProductId(Guid productGuid, Version version)
        {
            return WixGuid.HashGuidByInteger(productGuid, version.GetHashCode() + 1);
        }