这是我所拥有的
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"))))
如果我使用 File 而不是 Files 并且只包含一个 .exe 文件,它可以正常工作,但显然我的应用程序无法正常工作。
如何确保包含引用的输出路径中的所有文件。我确定路径是正确的,因为安装会创建输出文件夹中存在的文件夹,但没有文件。