I have exported a DXF file from Mathematica and I am trying to import it in AutoCAD.
The file that has been exported is output of a command like the following
g = Graph[vl, edges,
VertexCoordinates -> {v_ :> ({x[v], y[v]} /. solution)},
EdgeWeight -> ew, VertexLabels -> Placed["Name", Center],
EdgeLabels -> {e_ :> Placed["EdgeWeight", .3]}, VertexSize -> .7,
VertexStyle -> Red]
More details can be found in my previous post here
The following graph was exported from Mathematica using the command : Export["file.dxf", Show[Graph3D[g]]]

The file obtained after export is shared here.
But when I try to open the file in AutoCAD, the drawing window in AutoCAD shuts.
Could someone look into this?
If this doesn't work, can I export in other formats?
EDIT: The solution suggested below doesn't work when the output is obtained as a result of the following command
g3d = Graph3D[vl, edges,
VertexCoordinates -> {v_ :> ({x[v], y[v], z[v]} /. solution3d)},
EdgeWeight -> ew, VertexLabels -> Placed["Name", Center],
EdgeLabels -> {e_ :> Placed["EdgeWeight", .5]}, VertexSize -> .3,
VertexStyle -> Red, ImageSize -> Large]
I think the problem here is solution3d already as x,y,z coordinates in it. When I export the output to dxf using
Export["file.dxf", Show[Graph3D[g3d]]]
the exported dxf can't be imported in AutoCAD.

orderis used to place the numbers in the correct order. Instead ofpos[[i]],vd[[i]]are the vertex coordinates. – creidhne Apr 29 '20 at 19:12g = Graphics3D[lines, Boxed -> False, ViewPoint -> Top, VertexLabels -> Automatic]doesn't work? – Natasha Apr 30 '20 at 02:36labels = Table[Inset[Style["Label " <> ToString[i], Bold, 20], vd[[i]]], {i, Length@holes}];what should go in place of holes? – Natasha Apr 30 '20 at 02:38edgeLengths = # -> Norm[Through[{x, y}@First[#]] - Through[{x, y}@Last[#]]] /. solution & /@ EdgeList[g3d]. Please suggest how this has to be addd tog.solutionandg3dare from answer provided from previous post – Natasha Apr 30 '20 at 02:49VextexLabelsdoesn't work becauseGraphics3Ddoes not have that feature, seeOptions[Graphics3D]. Your graph has 9 vertices, so changeLength@holestoLength@vd. It's much easier to get the edge lengths fromArcLength/@lines. – creidhne Apr 30 '20 at 12:46