Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot find wrapper assembly for type library "Microsoft.Office.Core"

I have a warning when i build a project in Visual Studio :

Cannot find wrapper assembly for type library "Microsoft.Office.Core" 

How do I get rid of it ?

like image 540
Alex Avatar asked Jun 01 '12 08:06

Alex


2 Answers

Missing this reference "Office = Microsoft.Office.Core"?

Here is how you can add the particular reference:

Step 1: Right-click your project

Step 2: Select "Add reference.."

Step 3: Click on the "COM" tab

Step 4: Scroll down to select "Microsoft Office 12.0 Object Library".

Source: https://web.archive.org/web/20160305201349/http://blogs.msdn.com/b/tolong/archive/2007/12/02/missing-office-microsoft-office-core-reference.aspx

like image 30
RaHuL Kawade Avatar answered Nov 09 '22 21:11

RaHuL Kawade


I followed the instruction from the link below and the problem is resolved. The problem is related to a Windows update, so after I remove the reference Microsoft.Office.Core and rebuild the project, the problem is resolved.

Warning: The referenced component 'Microsoft.Office.Core' could not be found

like image 100
Auguste Avatar answered Nov 09 '22 23:11

Auguste