.\" Automatically generated by Pandoc 2.2.1
.\"
.TH "dotnet remove reference command \- .NET Core CLI" "1" "" "" ".NET Core"
.hy
.SH dotnet remove reference
.PP
.SH NAME
\f[C]dotnet\ remove\ reference\f[] \- Removes project\-to\-project references.
.SH SYNOPSIS
\f[C]dotnet\ remove\ [<PROJECT>]\ reference\ [\-f|\-\-framework]\ <PROJECT_REFERENCES>\ [\-h|\-\-help]\f[]
.SH DESCRIPTION
The \f[C]dotnet\ remove\ reference\f[] command provides a convenient option to remove project references from a project.
.SS Arguments
\f[C]PROJECT\f[]
Target project file.
If not specified, the command searches the current directory for one.
\f[C]PROJECT_REFERENCES\f[]
Project\-to\-project (P2P) references to remove.
You can specify one or multiple projects.
Glob patterns are supported on Unix/Linux based terminals.
.SH OPTIONS
\f[C]\-h|\-\-help\f[]
Prints out a short help for the command.
\f[C]\-f|\-\-framework\ <FRAMEWORK>\f[]
Removes the reference only when targeting a specific framework.
.SH EXAMPLES
Remove a project reference from the specified project:
\f[C]dotnet\ remove\ app/app.csproj\ reference\ lib/lib.csproj\f[]
Remove multiple project references from the project in the current directory:
\f[C]dotnet\ remove\ reference\ lib1/lib1.csproj\ lib2/lib2.csproj\f[]
Remove multiple project references using a glob pattern on Unix/Linux:
\f[C]dotnet\ remove\ app/app.csproj\ reference\ **/*.csproj\f[]
.SH AUTHORS
mairaw.