You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently Edwin Young posted on wix-users the below snippet. This seems like an easy put and great idea for a custom action project type as alternative option for DTF.
HeatWave Version
0.9.0.5
What's your idea?
Recently Edwin Young posted on wix-users the below snippet. This seems like an easy put and great idea for a custom action project type as alternative option for DTF.
https://github.com/edyoung/net7ca
using System.Runtime.InteropServices;
using WixToolset.Dtf.WindowsInstaller;
namespace CustomAction;
public class Class1
{
[UnmanagedCallersOnly(EntryPoint = "CustomAction2")]
public static uint CustomAction2(IntPtr handle)
{
using Session session = Session.FromHandle(handle, false);
}
The text was updated successfully, but these errors were encountered: