"Le projet importé "C:Microsoft.CSharp.targets" n'a pas été trouvé" (orignal : The imported project "C:Microsoft.CSharp.targets" was not found).
Pour résoudre ce problème, ouvrez le fichier .csproj de votre projet avec le bloc-note Windows (ou notepad++) et retrouvez la ligne suivante :
<Import Project="$(MSBuildToolsPath)Microsoft.CSharp.targets" />
Modifiez ensuite le chemin MSBuildToolsPath en MSBuildBinPath, ce qui vous donnera :
<Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
Le problème doit normalement être résolu.