I have a UWP application written in C # that builds (VS 14.0.25425.01 Update 3 on Windows 10.0.14393, the target version of the project is assembly 14393) and works in debug mode, but does not work in release mode using the following error :
Microsoft.NetNative.targets (640.5): error: MCG0004: InternalAssert Assert Failed: field not found during [UNKNOWN]
No more details, except for two warnings before this, I'm not sure if they are related to the problem:
Resources.System.Linq.Expressions.rd.xml (35): warning: ILTransform: warning ILT0027: Method 'CreateLambda' inside 'System.Linq.Expressions.Expression' not found. Resources.System.Linq.Expressions.rd.xml (91): warning: ILTransform: warning ILT0027: Method 'ParameterIsAssignable' inside 'System.Linq.Expressions.Expression' not found.
Any suggestions that may be related to the problem?
source share