Skip to content

Commit d7aafeb

Browse files
authored
Merge pull request #5825 from dmringo/patch-1
Tweak example in configuration combinations
2 parents 65fdba5 + 6f66c4f commit d7aafeb

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

docs/build/reference/vcxproj-file-structure.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -125,18 +125,11 @@ The following snippet shows a project configuration. In this example, 'Debug|x64
125125
The IDE expects to find a project configuration for any combination of `Configuration` and `Platform` values used in all `ProjectConfiguration` items. Often, it means that a project might have meaningless project configurations to fulfill this requirement. For instance, if a project has these configurations:
126126

127127
- Debug|Win32
128-
129-
- Retail|Win32
130-
131-
- Special 32-bit Optimization|Win32
132-
133-
then it must also have these configurations, even though "Special 32-bit Optimization" is meaningless for x64:
134-
135-
- Debug|x64
136-
137128
- Retail|x64
129+
- Debug|x64
130+
- Retail|Win32
138131

139-
- Special 32-bit Optimization|x64
132+
Then if you add a new configuration to the project, say "Special 32-bit Optimization|Win32", then you must also add the configuration "Special 32-bit Optimization|x64", even though "Special 32-bit Optimization" is meaningless for x64.
140133

141134
You can disable the build and deploy commands for any configuration in the **Solution Configuration Manager**.
142135

0 commit comments

Comments
 (0)