I am experimenting with custom scaffolders, using this tutorial: https://blogs.msdn.microsoft.com/webdev/2014/04/03/creating-a-custom-scaffolder-for-visual-studio/
I have created my scaffolder and it builds. Pressing f5 gives me a new VS instance in which I create a project and test my scaffolder. It works :)
But I am at a loss as to what to do next. I haven't been able to find any tutorials / guidance / information on how to proceed from this point
How do I deploy it into an existing project?
What I've Tried
Because the BasicScaffolder project outputs a class library, I tried to import this as a reference in another project. But there is no dll in /bin/Release
.
Do I need to perform an extra step to create this file?
Is this the correct way to deploy the scaffolder into an existing project?