Search code examples
c#visual-studio-2017novacode-docx

MIssing Novacode namespace


I just started in my position (3 weeks), and this is my first developer job. I had 8 days with the previous developer before he left, I am now the only developer here (yay me, talk about sink or swim). I have a program that is getting a missing namespace message for Novacode and DocX (which I believe is part of Novacode)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Novacode;
using Word = Microsoft.Office.Interop.Word;
using Microsoft.Office.Interop.Word;

The program compiled fine two weeks ago. However, last week they upgraded everything from VS2010 to VS2017. Would this be causing the missing Namespace? How do I, where do I get Novacode(which I believe is an add-on)?

Patience with the new guy, trying to learn my job and learn Stackoverflow.


Solution

  • You can find all the Novacode project on github too if you want to add DocX as a project to your solution.

    It is very usefull if you want to add more functionnality to the Novacode.DocX based library.

    It's what i did personnaly

    https://github.com/WordDocX/DocX

    Hope this help and good luck for your first job