コード例 #1
0
        public override async Task PostInstall(IInstallerSession installerSession, CancellationToken cancelToken,
                                               bool processed)
        {
            await base.PostInstall(installerSession, cancelToken, processed).ConfigureAwait(false);

            installerSession.RunCE(this);
        }
コード例 #2
0
 public override async Task PostInstall(IInstallerSession installerSession, CancellationToken cancelToken,
     bool processed) {
     await base.PostInstall(installerSession, cancelToken, processed).ConfigureAwait(false);
     installerSession.RunCE(this);
 }
コード例 #3
0
 public override async Task PostInstall(IInstallerSession installerSession, CancellationToken cancelToken) {
     await base.PostInstall(installerSession, cancelToken).ConfigureAwait(false);
     installerSession.RunCE(this);
         // TODO: run CE on custom repo content, and somehow figure out the NetworkId vs RepoId like in PwS..
 }