File tree Expand file tree Collapse file tree
src/Uno.UI.RemoteControl.Host Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 <Nullable >enable</Nullable >
99 <NoWarn >$(NoWarn);VSTHRD200</NoWarn >
1010 <DefineConstants >$(DefineConstants);IS_DEVSERVER</DefineConstants >
11+
12+ <!-- The dev-server is a long-running background daemon on the developer's machine.
13+ The default Web SDK profile (Server GC) is throughput-oriented and retains committed
14+ memory; switch to a memory-conscious Workstation profile instead. See #24203. -->
15+ <ServerGarbageCollection >false</ServerGarbageCollection >
16+ <ConcurrentGarbageCollection >true</ConcurrentGarbageCollection >
1117 </PropertyGroup >
1218
1319 <Import Project =" ../targetframework-override-noplatform.props" />
99105 <Target Name =" GetTargetPath" />
100106 <Target Name =" GetCopyToPublishDirectoryItems" />
101107
108+
109+ <ItemGroup >
110+ <!-- runtimeconfig.template.json is a build-time input merged into the generated
111+ Uno.UI.RemoteControl.Host.runtimeconfig.json; it must not be copied to output
112+ nor packed. See #24203. -->
113+ <Content Remove =" runtimeconfig.template.json" />
114+ </ItemGroup >
115+
102116</Project >
Original file line number Diff line number Diff line change 1+ {
2+ "configProperties" : {
3+ "System.GC.ConserveMemory" : 5 ,
4+ "System.GC.HeapHardLimitPercent" : 66 ,
5+ "System.GC.HighMemoryPercent" : 70
6+ }
7+ }
You can’t perform that action at this time.
0 commit comments