Hi, as discussed in this thread it would be really useful to be able to access the macros available in the Visual Sudio project properties through autotext scripts.
For example I would like to be able to write a script like the following that could generate the contents of a header file:
/*!
\\file $FILE_BASE$.h
\\author %USERNAME%
\\brief $end$
An optional more detailed description.
Copyright (C) My Company $YEAR$ - All Rights Reserved
*/
#ifndef $(ProjectName)_$FILE_BASE$_h__
#define $(ProjectName)_$FILE_BASE$_h__
// Includes
// Forward declares
$selected$
#endif // $FILE_BASE$_h__
Where $(ProjectName) is the VS macro describing the name of the current project.
There are some really useful macros available in this way and many of them would be a huge help in autotext :)