Skip to content

Commit 0aff4f2

Browse files
authored
Add version inforation into table (#4132)
1 parent ab4dd11 commit 0aff4f2

File tree

1 file changed

+15
-24
lines changed

1 file changed

+15
-24
lines changed

docs/build/reference/using-an-nmake-macro.md

Lines changed: 15 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -88,30 +88,21 @@ $(filter \\a%f,\\abcdef) # Evaluates to "\\abcdef" - any `\\` that isn't directl
8888

8989
### <a name="functions-by-category"> Functions by category
9090

91-
#### Text functions
92-
93-
| Function | Purpose |
94-
|--|--|
95-
| [`findstring`, `findstringi`](nmake-function-findstring.md) | Checks if the input contains a string. |
96-
| [`lowercase`](nmake-function-lowercase.md) | Converts a string to lowercase. |
97-
| [`subst`, `substi`](nmake-function-subst.md) | Replaces all instances of one string with another. |
98-
| [`uppercase`](nmake-function-uppercase.md) | Converts a string to uppercase. |
99-
100-
#### List functions
101-
102-
| Function | Purpose |
103-
|--|--|
104-
| [`filter`, `filteri`](nmake-function-filter.md) | Keeps items in a list that match at least one pattern. |
105-
| [`filterout`, `filterouti`](nmake-function-filterout.md) | Keeps items in a list that don't match any patterns. |
106-
| [`patsubst`, `patsubsti`](nmake-function-patsubst.md) | Transforms each item that matches a pattern, items that don't match are left as-is. |
107-
| [`strip`](nmake-function-strip.md) | Cleans the whitespace in and around a list of items. |
108-
109-
#### File path functions
110-
111-
| Function | Purpose |
112-
|--|--|
113-
| [`abspath`](nmake-function-abspath.md) | Gets the absolute path for each item in a list. |
114-
| [`basename`](nmake-function-basename.md) | Gets the base name for each item in a list. |
91+
| Function | Purpose | Supported |
92+
|--|--|--|
93+
| **Text functions** | **Purpose** | **Supported** |
94+
| &emsp;[`findstring`, `findstringi`](nmake-function-findstring.md) | Checks if the input contains a string. | VS 2022 17.0 |
95+
| &emsp;[`lowercase`](nmake-function-lowercase.md) | Converts a string to lowercase. | VS 2022 17.2 |
96+
| &emsp;[`subst`, `substi`](nmake-function-subst.md) | Replaces all instances of one string with another. | VS 2022 17.0 |
97+
| &emsp;[`uppercase`](nmake-function-uppercase.md) | Converts a string to uppercase. | VS 2022 17.2 |
98+
| **List functions** | **Purpose** | **Supported** |
99+
| &emsp;[`filter`, `filteri`](nmake-function-filter.md) | Keeps items in a list that match at least one pattern. | VS 2022 17.0 |
100+
| &emsp;[`filterout`, `filterouti`](nmake-function-filterout.md) | Keeps items in a list that don't match any patterns. | VS 2022 17.0 |
101+
| &emsp;[`patsubst`, `patsubsti`](nmake-function-patsubst.md) | Transforms each item that matches a pattern, items that don't match are left as-is. | VS 2022 17.1 |
102+
| &emsp;[`strip`](nmake-function-strip.md) | Cleans the whitespace in and around a list of items. | VS 2022 17.0 |
103+
| **File path functions** | **Purpose** | **Supported** |
104+
| &emsp;[`abspath`](nmake-function-abspath.md) | Gets the absolute path for each item in a list. | VS 2022 17.1 |
105+
| &emsp;[`basename`](nmake-function-basename.md) | Gets the base name for each item in a list. | VS 2022 17.1 |
115106

116107
::: moniker-end
117108

0 commit comments

Comments
 (0)