@@ -298,17 +298,6 @@ public TargetDefinition ProducesArtifacts(IEnumerable<string> artifactName, stri
298298 return this ;
299299 }
300300
301- /// <summary>
302- /// Clears all produced artifacts for the current target, ensuring it does not produce any artifacts.
303- /// </summary>
304- /// <returns>The current <see cref="TargetDefinition" /> for fluent chaining.</returns>
305- public TargetDefinition ProducesNoArtifacts ( )
306- {
307- ProducedArtifacts . Clear ( ) ;
308-
309- return this ;
310- }
311-
312301 /// <summary>
313302 /// Declares an artifact that this target consumes.
314303 /// </summary>
@@ -377,17 +366,6 @@ public TargetDefinition ConsumesArtifacts(
377366 return this ;
378367 }
379368
380- /// <summary>
381- /// Clears all consumed artifacts for the current target, ensuring it does not depend on any external artifacts.
382- /// </summary>
383- /// <returns>The current <see cref="TargetDefinition" /> for fluent chaining.</returns>
384- public TargetDefinition ConsumesNoArtifacts ( )
385- {
386- ConsumedArtifacts . Clear ( ) ;
387-
388- return this ;
389- }
390-
391369 /// <summary>
392370 /// Declares a variable that this target produces.
393371 /// </summary>
@@ -403,17 +381,6 @@ public TargetDefinition ProducesVariable(string variableName)
403381 return this ;
404382 }
405383
406- /// <summary>
407- /// Clears all produced variables for the current target, ensuring it does not produce any variables.
408- /// </summary>
409- /// <returns>The current <see cref="TargetDefinition" /> for fluent chaining.</returns>
410- public TargetDefinition ProducesNoVariables ( )
411- {
412- ProducedVariables . Clear ( ) ;
413-
414- return this ;
415- }
416-
417384 /// <summary>
418385 /// Declares a variable that this target consumes.
419386 /// </summary>
@@ -426,15 +393,4 @@ public TargetDefinition ConsumesVariable(string targetName, string outputName)
426393
427394 return this ;
428395 }
429-
430- /// <summary>
431- /// Clears all consumed variables for the current target, ensuring it does not depend on any external variables.
432- /// </summary>
433- /// <returns>The current <see cref="TargetDefinition" /> for fluent chaining.</returns>
434- public TargetDefinition ConsumesNoVariables ( )
435- {
436- ConsumedVariables . Clear ( ) ;
437-
438- return this ;
439- }
440396}
0 commit comments