You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/debugger/hot-reload.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,13 +54,13 @@ The following table shows which projects support .NET Hot Reload with the debugg
54
54
55
55
The [types of edits you can make](../debugger/supported-code-changes-csharp.md) with Hot Reload are determined by the runtime and compiler version, not by the method you used to start the application (F5 or Ctrl+F5).
56
56
57
-
In the following sections, we’ll expand on the preceding summary and dive into more details.
57
+
In the following sections, we provide additional details.
58
58
59
59
## Support for C++ applications
60
60
61
61
When using Visual Studio 2022 and starting your app with the debugger, you can hot reload a native C++ application when running under the debugger (F5) using the **Hot Reload** button. Hot Reload is also supported for apps built using CMake and OpenFolder projects.
62
62
63
-
For your project to support Hot Reload, you need the following:
63
+
For your project to support Hot Reload, you need the following options set:
64
64
65
65
* Project > Properties > C/C++ > General > **Debug Information Format** must be set to "Program Database for Edit and Continue `/ZI`"
66
66
* Project > Properties > Linker > General > **Enable Incremental Linking** must be set to "Yes `/INCREMENTAL`"
@@ -82,7 +82,7 @@ Hot Reload is available without the debugger when targeting most types of .NET 6
82
82
83
83
This feature is exclusive to .NET 6+. Those apps not targeting .NET 6+ (that is, they target .NET 5 or below) do not support the "no debugger" scenario and must use the debugger to get access to Hot Reload functionality.
84
84
85
-
Also, be aware that not all project types currently support the "no debugger" scenario, see [Support for .NET applications](#support-for-net-applications).
85
+
Also, not all project types currently support the "no debugger" scenario, see [Support for .NET applications](#support-for-net-applications).
0 commit comments