Skip to content

Commit 41a6eca

Browse files
committed
Force file copy during package creation
1 parent 8f77293 commit 41a6eca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/builder/targets/Packages.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ public static async Task OnExecute(BuildContext context)
1515

1616
File.Copy(
1717
Path.Join(context.BaseFolder, "src", "xunit.runner.visualstudio", "xunit.runner.visualstudio.sign-file-list"),
18-
Path.Join(context.PackageOutputFolder, "xunit.runner.visualstudio.sign-file-list")
18+
Path.Join(context.PackageOutputFolder, "xunit.runner.visualstudio.sign-file-list"),
19+
overwrite: true
1920
);
2021
}
2122
}

0 commit comments

Comments
 (0)