I'm trying to follow the instructions of the following question: How can I combine several individual .ico files into a single file?
The top answer there states the following:
You need to build a DLL that contains multiple icons as resources. That can be done from Visual Studio via these instructions. Other Windows development tools that can create a DLL should be able to do the same thing.
In these instructions, it says
To create a resource-only DLL [in Visual Studio], you create a new Win32 DLL (non-MFC) project and add your resources to the project.
- Select Win32 Project in the New Project dialog box and specify a DLL project type in the Win32 Project Wizard.
But clicking on New Project in Visual Studio, I struggle to find the "Win32 Project" in the listing that they are referring to:
How can I find such a project? I am using Visual Studio 2022.
