Search Issue Tracker
Won't Fix
Votes
1
Found in
5.6.1p1
Issue ID
918012
Regression
No
[UWP] STARTPROCESSTASK Out of Memory when building Master x86 build
To reproduce:
1. Open project attached by the user
2. Switch to Windows Store Platform UWP build type - XAML
3. Open Tools->Configuration window
4. Press "Start Build WSA"
5. Press "->" button in the top left corner in the same window
6. Open the built solution
7. Switch to Master|x86
8. Build the project
Result: STARTPROCESSTASK Out of Memory Error
Reproduced on: 5.6.2p2
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [Linux] Crash on DetermineFileNameForNewPrefab when creating Prefab Variant
- Memory Profiler styling breaks when the SummaryView.uxml file is opened in UI Builder
- A "projectChanged" event is not triggered when Sprites are added to a SpriteAtlas
- A Memory leak occurs when the "JsonSerialization.FromJson" function is executed
- “ArgumentException: SetData()“ error when making a character with PSDImporter under specific conditions
kaspyar
Jun 04, 2018 18:18
Reproduced on: 5.6.5f1
FilimonovS
Feb 15, 2018 17:22
This error is due to the fact that there is a lot of code in your application / library.
So I have a solution to this problem.
To fix this issue find the file Default.rd.xml in the UWP solution.
It looks like this.
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
<Application>
<Assembly Name="*Application*" Dynamic="Required All" />
</Application>
</Directives>
In Unity case you have to add this line.
<Assembly Name="Assembly-CSharp" Dynamic="Required All" DoNotOptimize="true"/>