Heres what i have
var project =
new ManagedProject(productName,
new Dir($"%ProgramFiles%\\{companyName}",
new Dir($"{productName}",
new Files(clientFolderPath,
f => f.EndsWith(".dll") ||
f.EndsWith(".exe") ||
f.EndsWith(".config"))))
If I use File instead of Files and only include one .exe file it works fine but then obviously my app doesnt work.
How can I make sure all the files in the referenced output path are included. Im sure the path is correct since the installation creates the folders present in the the output folder, but none of the files.