Skip to content

Release v1.9.6

Compare
Choose a tag to compare
@oleg-shilo oleg-shilo released this 10 Apr 13:25
· 855 commits to master since this release
  • Added COM registration support
    var project =
      new Project("MyProduct",
          new Dir(@"%ProgramFiles%\My Company\My Product",
              new File(@"Files\Bin\MyApp.exe",
                         new ComRegistration
                         {
                             Id = new Guid("6f330b47-2577-43ad-9095-1861ba25889b"),
                             Description = "MY DESCRIPTION",
                             ThreadingModel = ThreadingModel.apartment,
                             Context = "InprocServer32",
                             ProgIds = new[]
                             {
                                 new ProgId
                                 {
                                     Id = "PROG.ID.1",
                                     Description ="Version independent ProgID"
                                 }
                             }
                         })));
    
  • Issue #621: W0W6432Node/COM Registration
  • Issue #608: Create Shortcut on Desktop to dotnet.exe
  • Addressed candle warning on AutoElements.UACWarning = ""
  • Completely removed all traces of SetEnvVar.dll. Part of #620 fix.