You need to change "Embed interop types" from "True" to "False" (MS makes VisualStudio 2012 or later to automatically set "Embed interop types" to "True" when a COM reference is added to the project. This specifically works with MS Office applications, but DOES NOT work with AutoCAD COM).
Also, it looks like you did not use AutoCAD interop assemblies from Autodesk (they can be dowloaded from ObjectARX SDK), and they can also be found in AutoCAD installation folder: Autodesk.AutoCAD.Interop/Common.dll). In older version of AutoCAD, these PIA were installed in GAC, but since AutoCAD2012(2013?), it is no longer the case any more.
It is recommended to use Interop assemblies from Autodesk (either from ObjectARX SDK, or ifrom AutoCAD installation folder). In this case, make sure the references to these DLLS is set "COPY LOCAL" as False (because they are already in the same folder as acad.exe.
However, in your case, it looks like you added AutoCAD COM reference by selecting "COM" tab in Refernces dialog box, select AutoCAD COM type libabries, and let VisualStudio generate the .NET interop assemblies for you. This is fine and you should not have issues here, but you need to make sure to set "Copy Local" to "Ture"