File tree Expand file tree Collapse file tree 1 file changed +1
-38
lines changed
src/Uno.UI.RemoteControl/HotReload Expand file tree Collapse file tree 1 file changed +1
-38
lines changed Original file line number Diff line number Diff line change 1- using System ;
2-
3- namespace Uno . UI . RemoteControl . HotReload ;
1+ namespace Uno . UI . RemoteControl . HotReload ;
42
53internal enum HotReloadMode
64{
@@ -15,38 +13,3 @@ internal enum HotReloadMode
1513 /// <remarks>This can be metadata-updates pushed by either VS or the dev-server.</remarks>
1614 MetadataUpdates ,
1715}
18-
19- [ Flags ]
20- internal enum MetadataUpdatesSupport
21- {
22- None ,
23-
24- // Emitter
25-
26- /// <summary>
27- /// Metadata-updates are emitted by the IDE
28- /// </summary>
29- Ide = 1 << 0 ,
30-
31- /// <summary>
32- /// Metadata-updates are emitted by the dev-server by listening to the file system.
33- /// </summary>
34- DevServer = 1 << 1 ,
35-
36- // Channels
37-
38- /// <summary>
39- /// Metadata-updates are pushed directly to the runtime (currently compatible only with the IDE emitter).
40- /// </summary>
41- Runtime = 1 << 4 ,
42-
43- /// <summary>
44- /// Metadata-updates are sent through the App channel using AssemblyDeltaReload frame message (currently compatible only with the DevServer emitter).
45- /// </summary>
46- RemoteControl = 1 << 5 ,
47-
48- /// <summary>
49- /// Metadata-updates are sent to the app through the debugger using the IDE channel (currently compatible only with the DevServer emitter).
50- /// </summary>
51- Debugger = 1 << 6 ,
52- }
You can’t perform that action at this time.
0 commit comments