Super simple
Just open the upsellproducts.xml.config xmlpakcage and add 2 lines in the ProductCell template (new code in red)
Code:
<a href="{aspdnsf:ProductLink(ProductID, SEName, 0, '')}">
<xsl:value-of select="$pName" disable-output-escaping="yes"/>
</a>
<br/>
<xsl:value-of select="SKU" disable-output-escaping="yes" />
<br/>
<xsl:if test="aspdnsf:AppConfigBool('DisplayOutOfStockProducts') = 'true'">
<xsl:value-of select="aspdnsf:DisplayProductStockHint(ProductID,'Product')" disable-output-escaping="yes" />
</xsl:if>
<xsl:value-of select="aspdnsf:GetUpsellVariantPrice(VariantID, HidePriceUntilCart, Price, SalePrice, ExtendedPrice, Points, aspdnsf:GetMLValue(SalesPromptName), 0, TaxClassID, UpsellDiscMultiplier)" disable-output-escaping="yes" />
<br/>