Skip to content

Commit

Permalink
Force file copy during package creation
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Jan 17, 2024
1 parent 8f77293 commit 41a6eca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/builder/targets/Packages.cs
Expand Up @@ -15,7 +15,8 @@ public static async Task OnExecute(BuildContext context)

File.Copy(
Path.Join(context.BaseFolder, "src", "xunit.runner.visualstudio", "xunit.runner.visualstudio.sign-file-list"),
Path.Join(context.PackageOutputFolder, "xunit.runner.visualstudio.sign-file-list")
Path.Join(context.PackageOutputFolder, "xunit.runner.visualstudio.sign-file-list"),
overwrite: true
);
}
}

0 comments on commit 41a6eca

Please sign in to comment.