wulf11
wulf11
> The Window bar is weirdly half cut off though: Had the same issue, but the following solution works for me: ``` var mauiWindow = handler.VirtualView; var nativeWindow = handler.PlatformView;...
``` import EssentiaType from 'essentia.js/dist/core_api'; // use require instead of import, to use CommonJS-modules const Essentia = require('essentia.js').Essentia; const EssentiaWASM = require('essentia.js').EssentiaWASM; const EssentiaInstance: EssentiaType = new Essentia(EssentiaWASM, false); ```...
@anpin only workaround I know is described in https://github.com/dotnet/maui/issues/9064#issuecomment-1685883983 I had this problem also in .NET 7.. Somehow the AppxManifest.xml file won't be generated if you use the -p:WindowsAppSDKSelfContained=true flag...