예제 #1
0
        protected override string CalculateMsiId()
        {
            File   file = (File)this.Item;
            string id   = WixBackendCompilerServices.GenerateId(this.Backend, this.Item, file.Name, file.Path);

            return(id);
        }
예제 #2
0
        protected override string CalculateMsiId()
        {
            Folder folder   = (Folder)this.Item;
            string safePath = WixBackendCompilerServices.GenerateSafeMsiIdFromPath(folder.Path);
            string msiId    = WixBackendCompilerServices.GenerateId(this.Backend, this.Item, safePath, folder.Path);

            return(msiId);
        }