DotNetAliases.

DotNetRemoveReference(ICakeContext, string, IEnumerable<FilePath>, DotNetReferenceRemoveSettings) Method

Summary

Removes project-to-project (P2P) references.
Namespace
Cake.Common.Tools.DotNet
Containing Type
DotNetAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Reference")]
[CakeNamespaceImport("Cake.Common.Tools.DotNet.Reference.Remove")]
public static void DotNetRemoveReference(this ICakeContext context, string project, IEnumerable<FilePath> projectReferences, DotNetReferenceRemoveSettings settings)

Examples

 var settings = new DotNetReferenceRemoveSettings
 {
     Framework = "net8.0"
 };

 DotNetRemoveReference("./app/app.csproj", GetFiles("./src/*.csproj"), settings);

Attributes

Type Description
CakeMethodAliasAttribute An attribute used to mark script method aliases.
CakeAliasCategoryAttribute An attribute used for documentation of alias methods/properties.
CakeNamespaceImportAttribute An attribute used to hint Cake about additional namespaces that need to be imported for an alias to work. This attribute can mark an extension method, the extension method class, or the assembly to provide a global set of imports.

Parameters

Name Type Description
context ICakeContext The context.
project string Target project file. If not specified, the command searches the current directory for one.
projectReferences IEnumerable<FilePath> Project-to-project (P2P) references to remove. You can specify one or multiple projects. Glob patterns are supported on Unix/Linux based terminals.
settings DotNetReferenceRemoveSettings The settings.

Return Value

Type Description
void