I have a UWP app that works perfect when in x64 Debug mode but fails when in x64 release mode with .NET Native on (works in release with .Net Native off). When it fails, I received the following error before any code is run in my app:
onecore\windows\directx\database\helperlibrary\lib\directxdatabasehelper.cpp(527)\directxdatabasehelper.dll!00007FFDA305836B: (caller: 00007FFDA305409D) ReturnHr(1) tid(8da0) 80070005 Access is denied.
I don't know for sure, but I think this may be related to some audio processing I am trying to do with the AudioGraph, but I really don't know. I do know that the audio processing functions, specifically:
CreateAudioGraphResult = Await AudioGraph.CreateAsync(Settings)
Fails hard when using .NET Native.
Has anyone else seen this before? Google has been no help.
Any help appreciated.