You’ll have to start by importing your AutoCAD lines into Dynamo. I highly recommend using the Civil3DToolkit Package node PolyLineExtensions.Geometry for this.
Then, you’ll have to create one closed loop per shape, for this you can use the node PolyCurve.ByJoinedCurves.
From these polycurves you can create a Surface with the Surface.ByPatch node.
From this Surface you can create a solid, with the Surface.Thicken nodes (there are multiple depending on your needs).
I’m just wondering if my selection are lines instead of polylines. I don’t want
to pedit especially if there are many like walls on the building for example.
Since your lines aren’t closed curves the Surface.ByPatch node errors since it doesn’t know what to do.
To circumvent this issue you’ll have to group your curves and transform them ALL into PolyCurves, since the Surface.ByPatch node expects a closed PolyCurve (you are now feeding straight, single Curves).
I would suggest adding the Archi Lab package node Group.Curves after your PolyLineExtensions.GetGeometry node, this will group your curves, then use the PolyCurve.ByCurves node to create only PolyCurves. Use this as input for your Surface.ByPatch node.
The blue text gives you the dependencies of the package, which in this case are Revit and IronPython2. So the answer is no, archi-lab will not work in Dynamo for Civil 3D.
as @zachri.jensen has stated previously, archi-lab will not work in Dynamo for Civil 3D. However, if you can open it in revit, I believe you can take the code from the nodes. the “group_curves” node’s code is fully usable in civil 3D.
I hunted down the code for it and used it my text-halo script. I have also re-shared the code in my post: