From d3caf4cc0275073a7fad11fa2240138eabdcc9bd Mon Sep 17 00:00:00 2001 From: Cyrille-Alexandre NDOUMBE Date: Sat, 26 Nov 2022 22:09:37 +0100 Subject: [PATCH] Remove dependency of `IPack.Pack` on `IMutation.MutationTests --- src/Candoumbe.Pipelines/Components/IPack.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Candoumbe.Pipelines/Components/IPack.cs b/src/Candoumbe.Pipelines/Components/IPack.cs index 63e264f..4641927 100644 --- a/src/Candoumbe.Pipelines/Components/IPack.cs +++ b/src/Candoumbe.Pipelines/Components/IPack.cs @@ -32,7 +32,6 @@ public interface IPack : IHaveArtifacts, ICompile /// public Target Pack => _ => _ .TryDependsOn(x => x.UnitTests) - .TryDependsOn(x => x.MutationTests) .DependsOn(Compile) .Consumes(Compile) .Produces(PackagesDirectory / "*.nupkg")