Im using WixSharp to build my installer. In my project, I have this :
new Files(
new Feature("RootFilesFeature"),
Path.Combine(C_SERVICE_RELEASE_PATH,"*.*"),
(lFilename) => !lFilename.StartsWith("appsettings", true)
)
Regardless of that predicate, I still get appsettings.json and appsettings.development.json installed.
What am I doing wrong?