Reputation: 73
In my Application I do office word's development and I referenced Microsoft.Office.Interop.Word.dll but It build failed, through I can't see the error information in errorslist, is anyone can tell me why,and how can I resolve this problem
Upvotes: 1
Views: 432
Reputation: 1643
I think this is because you are referencing to the wrong version of Interop.word from GAC add the current version that should solve the problem
Upvotes: 1
Reputation: 70728
Visual Studio should always give you the error when a build fails. Try cleaning the solution and rebuild all and see if that makes a difference. If not, try removing the Office assembly reference and then rebuild (check if there are any errors) and then add the reference again.
Upvotes: 0