Create a Solution and a Project

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:

  1. In Visual Studio, click File > New > Project.
  2. In the Create a new project dialog box, select PL/I from the Language drop-down list.
  3. Select the Console Application template.
  4. Specify a name for the project.

    Notice that the name and 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.

  5. In the Location field, browse to a directory where you want to put this tutorial.

    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.

  6. Click Create.

    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.

Tip: You can export this project to a template on which you can base future projects. To do this:
  1. On the menu bar click File > Export Template.
  2. Follow the wizard to export the template.