The first task is to create a solution and a project. A solution is a container holding one or more projects that work together to create an application. The solution has the extension .sln, and is a readable text file. Microsoft recommends you do not edit the file outside of Visual Studio.
A PL/I project has the extension .pliproj, and again this is a readable file, but Microsoft recommends that you do not edit it.
To create a project and solution:
Notice that the Name and New Solution Name fields have the same name. Changing the name automatically changes the solution name but changing the solution name does not change the project name.
For example, if you create a folder on your c: drive called tutorials, change the location field to c:\tutorials. The solution will be stored in a subdirectory with the same name as the project name.
This creates a solution and a project. Solution Explorer shows the project. It contains a newly created skeleton program, program1.pli that the IDE automatically opens in the editor.