Skip to content

Commit 30f04c2

Browse files
author
Colin Robertson
committed
List to bullets per editor
1 parent ab3b34c commit 30f04c2

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ If you choose **Yes**, then the project gets converted. It can't be converted ba
1717

1818
When you upgrade a project, you get an upgrade report. The report is also saved in your project folder as UpgradeLog.htm. The upgrade report shows a summary of what problems were found during conversion. It lists some information about changes that were made, including:
1919

20-
1. Project properties.
20+
- Project properties.
2121

22-
1. Include files.
22+
- Include files.
2323

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

26-
1. 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.
26+
- 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-
1. 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 due to changes in APIs such as renamed APIs, changed function signatures, or deprecated functions.
2929

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

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

34-
1. Runtime errors or unexpected results because of behavior changes.
34+
- Runtime errors or unexpected results because of behavior changes.
3535

36-
1. Errors that were introduced in the tools. If you find an issue, report it to the Visual C++ team through your normal support channels or by using the [Visual Studio C++ Developer Community](https://developercommunity.visualstudio.com/spaces/62/index.html) page.
36+
- Errors that were introduced in the tools. If you find an issue, report it to the Visual C++ team through your normal support channels or by using the [Visual Studio C++ Developer Community](https://developercommunity.visualstudio.com/spaces/62/index.html) page.
3737

3838
Some upgraded projects and solutions can be built successfully without modification. However, most projects will likely require changes to both project settings and your source code. There's no single correct way to go about fixing these issues, but we recommend using a phased approach. Before you start, review [Overview of potential upgrade issues](../porting/overview-of-potential-upgrade-issues-visual-cpp.md) for more information on many kinds of common errors.
3939

@@ -47,7 +47,7 @@ Some upgraded projects and solutions can be built successfully without modificat
4747

4848
1. Fix any remaining errors that prevent compilation. Refer to [Overview of potential upgrade issues](../porting/overview-of-potential-upgrade-issues-visual-cpp.md) for fixes for common errors.
4949

50-
1. Turn **permissive-** back on and fix any new errors caused by non-conformant code that previously compiled in MSVC.
50+
1. Turn **/permissive-** back on and fix any new errors caused by non-conformant code that previously compiled in MSVC.
5151

5252
1. Turn on code analysis to identify potential problems or outdated coding patterns that are no longer considered acceptable. If code analysis flags many errors, you can turn off some of the warnings to focus on the most important ones first. The IDE can help with Quick Fixes for some kinds of issues.
5353

0 commit comments

Comments
 (0)