Skip to content

Commit 53bc5bb

Browse files
author
Colin Robertson
committed
Updated per Olga comments
1 parent 30f04c2 commit 53bc5bb

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/porting/upgrading-projects-from-earlier-versions-of-visual-cpp.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ ms.assetid: 18cdacaa-4742-43db-9e4c-2d9e73d8cc84
99

1010
To upgrade a project created in an earlier version of Visual Studio, just open the project in the latest version of Visual Studio. Visual Studio offers to upgrade the project to the current schema.
1111

12-
If you choose **No**, the project doesn't get upgraded. You can still use the project in the newer version of Visual Studio, though. Just set your project properties to continue to target the older toolset. If you leave the older version of Visual Studio on your computer, its toolset is available in later versions. For example, if your project must continue to run on Windows XP, you can upgrade to Visual Studio 2019. You then specify the toolset as v141 or earlier in your project properties. For more information, see [Use native multi-targeting in Visual Studio to build old projects](use-native-multi-targeting.md).
12+
If you choose **No**, the project doesn't get upgraded. For projects created in Visual Studio 2010 and later, you can still use the project in the newer version of Visual Studio. Just set your project properties to continue to target the older toolset. If you leave the older version of Visual Studio on your computer, its toolset is available in later versions. For example, if your project must continue to run on Windows XP, you can upgrade to Visual Studio 2019. You then specify the toolset as v141_xp or earlier in your project properties. For more information, see [Use native multi-targeting in Visual Studio to build old projects](use-native-multi-targeting.md).
1313

14-
If you choose **Yes**, then the project gets converted. It can't be converted back to the earlier version. In upgrade scenarios, that's why it's good practice to make a copy of the existing project and solution files.
14+
If you choose **Yes**, then the project gets upgraded in place. It can't be converted back to the earlier version. In upgrade scenarios, that's why it's good practice to make a backup copy of the existing project and solution files.
1515

1616
## Upgrade reports
1717

@@ -21,15 +21,15 @@ When you upgrade a project, you get an upgrade report. The report is also saved
2121

2222
- Include files.
2323

24-
- Code that no longer compiles cleanly due to compiler conformance improvements or changes in the standard.
24+
- Code that no longer compiles cleanly because of compiler conformance improvements or changes in the standard.
2525

2626
- Code that relies on Visual Studio or Windows features that are no longer available. Or, header files that either aren't included in a default installation of Visual Studio, or were removed from the product.
2727

28-
- Code that no longer compiles due to changes in APIs such as renamed APIs, changed function signatures, or deprecated functions.
28+
- Code that no longer compiles because of changes in APIs such as renamed APIs, changed function signatures, or deprecated functions.
2929

3030
- Code that no longer compiles because of changes in diagnostics, such as a warning becoming an error
3131

32-
- Linker errors due to libraries that were changed, especially when /NODEFAULTLIB is used.
32+
- Linker errors because of libraries that were changed, especially when /NODEFAULTLIB is used.
3333

3434
- Runtime errors or unexpected results because of behavior changes.
3535

0 commit comments

Comments
 (0)