Forrest logo
back to the Projucer tool

projucer:tldr:92b58

projucer: Update the version number in a project.
$ Projucer --set-version ${version_number} ${path-to-project_file}
try on your machine

The command "Projucer --set-version ${version_number} ${path-to-project_file}" is used to set the version number of a project using the Projucer tool.

Here's a breakdown of the command:

  • "Projucer" is the command-line interface tool provided by JUCE, which is a framework for developing cross-platform audio applications. The Projucer tool is used for managing and configuring JUCE projects.

  • "--set-version" is an option or flag that indicates the purpose of the command, which is to set the version number of the project.

  • "${version_number}" is a placeholder that should be replaced with the actual desired version number of the project. For example, if you want to set the version to "1.0", you would replace "${version_number}" with "1.0".

  • "${path-to-project_file}" is another placeholder that needs to be replaced with the actual path to the project file. This should be the file of your JUCE project that you want to update the version number for.

So, by running this command with the specific version number and path to the project file, Projucer will update the version number in the specified project file accordingly.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the Projucer tool