i would recommand creating a template project. If you custom project is a web
application, then create a generic web app, then add all you custom file,
references etc to the project.
Now everytime you want to make a new custom project just use this .csproj as
the reference and use the AddFromTemplate method.
if you want to just add an item to a specific folder then
use
prj.ProjectItems.Item(IDEObject.SelectedItems.Item(1).Name).ProjectItems.AddFromTemplate(myFile","MyfileName);
> I have created a C# project template that adds files like:
> New.bmp
[quoted text clipped - 13 lines]
> Thanks,
> Dave