Visual Studio 2010 Customization Project Text Variable List

I am looking for a list of variables that I can use in text fields in a Visual Studio 2010 installation project.

For example, the welcome dialog has this text by default:

The installation program guides you through the steps necessary to install [ProductName] on your computer.

I am looking for other variables such as [ProductName], so I can do something like:

The installation program guides you through the steps necessary to install [ProductName] v [Version] on your computer.

Thanks.

+6
source share
1 answer

Press F4 after selecting the installation project in the solution explorer. You can see a list of variables, for example [ProductName], [Manufacturer], [Description], [Author] and [Version], etc.

The entire list of properties can be found at: http://msdn.microsoft.com/en-us/library/aa370905.aspx

+11
source

Source: https://habr.com/ru/post/904504/


All Articles