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
Comments (2)
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
- "Shader warning in 'Hidden/Light2D': implicit truncation of vector type" is thrown when building Universal 2D template
- AI Assistant breaks compilation of packages using System.Runtime.CompilerServices.Unsafe via auto-referencing
- Unity Hub checks the "Documentation" module by default on the 6.4 and 6.5 streams despite that it was unchecked with the previous installs
- Shortcut that toggles between Dopesheet and Curves Views in the Animation Window's Timeline is mislabed
- Property List Items Overlap onto the Property List's top edge when scrolling through a long Property List
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"/>