Skip to content

Release v1.10.0.0

Compare
Choose a tag to compare
@oleg-shilo oleg-shilo released this 04 Jul 13:06
· 839 commits to master since this release
  • Issue #658: Question: how to close running application or wait until user close application manually

  • Issue #656: ExeFileShortcut changing folder name

  • Issue #649: How to add permissions to regkey

  • Issue #647: Interrupt CA execution #647;

  • Implemented Session.IsCanceled

  • Added File.OnProcess and DirFiles.OnProcess to provide custom handling on processing wildcards:

    new Files(@"..\Release Folder\test\*.exe")
    {
        OnProcess = file =>
        {
            file.OverwriteOnInstall = true;
        }
    }, . . .