Linear system
$$
\mathbf{A} x = b
$$
where $\mathbf{A}\in\mathbb{C}^{m\times n}_{\rho}$, and the data vector $b\in\mathbf{C}^{m}$, the solution vector in $x\in\mathbf{C}^{n}$.
Least squares problem
A least squares solution is guaranteed to exist and is defined by
$$
x_{LS} = \left\{
x\in\mathbb{C}^{n} \colon
\lVert
\mathbf{A} x - b
\rVert_{2}^{2}
\text{ is minimized}
\right\}
$$
Least squares solution
The general least squares problem offers a $\color{blue}{particular}$ solution and a $\color{red}{homogeneous}$ solution. The confusingly named "solution of minimum norm" is just the $\color{blue}{particular}$ solution.
The minimizers are the affine set computed by
$$
x_{LS} =
\color{blue}{\mathbf{A}^{+} b} +
\color{red}{
\left(
\mathbf{I}_{n} - \mathbf{A}^{+} \mathbf{A}
\right) y}, \quad y \in \mathbb{C}^{n}
\tag{1}
$$
where vectors are colored according to whether they reside in a $\color{blue}{range}$ space or $\color{red}{null}$ space. (See Laub, 2005, Theorem 8.1, p. 66)
The red dashed line below is the set of the least squares minimizers which appears when there is a row rank deficit $(\rho < m)$. In these cases, the solution is not unique.

Least squares solution of minimum norm
To find the minimizers of the minimum norm, the shortest solution vector, compute the length of the solution vectors.
$$
%
\lVert x_{LS} \rVert_{2}^{2} =
%
\Big\lVert \color{blue}{\mathbf{A}^{+} b} +
\color{red}{
\left(
\mathbf{I}_{n} - \mathbf{A}^{+} \mathbf{A}
\right) y} \Big\rVert_{2}^{2}
%
=
%
\Big\lVert \color{blue}{\mathbf{A}^{+} b} \Big\rVert_{2}^{2} +
\Big\lVert \color{red}{
\left(
\mathbf{I}_{n} - \mathbf{A}^{+} \mathbf{A}
\right) y} \Big\rVert_{2}^{2}
%
$$
The $\color{blue}{range}$ space component is fixed, but we can control the $\color{red}{null}$ space vector. In fact, chose the vector $y$ which forces this term to $0$.
Therefore, the least squares solution of minimum norm is the particular solution
$$
\color{blue}{x_{LS}} =
\color{blue}{\mathbf{A}^{+} b}.
$$
This is the point where the red dashed line punctures the blue plane. The least squares solution of minimum length is the point in $\color{blue}{\mathit{R}\!\left(\mathbf{A}^{*}\right)}$.
Full column rank
You ask about the case of full column rank where $n=\rho$. In this case,
$$
\color{red}{\mathit{N}\left( \mathbf{A} \right)} =
\left\{ \mathbf{0} \right\},
$$
the null space is trivial. There is no null space component, and the least squares solution is a point.
In other words, the complete least squares solution is just the $
\color{blue}{particular}$ solution
$$
\color{blue}{x_{LS}} =
\color{blue}{\mathbf{A}^{+} b}
$$
When the matrix has full column rank, there is no $\color{red}{homogeneous}$ component to the solution. The solution is unique and is a point.