I am trying to include a large file in my project but it doesn't let me. If set the Build Action to "MauiAsset" I get the following error: "APT2000 filemap E 08-18 15:25:19 23420 8832 MapViewOfFile(0, 3487748096) failed with error 8 "filemap E 08-18 15:25:19 23420 8832 MapViewOfFile(0, 3487748096) failed with error 8".
With a little bit of research I found out that the maximum size of files you can include as MauiAsset is about 3GB, this file happens to be around 3.5GB.
I have tried setting Build Action to "Embedded Resource" but this gives me the following error: 'Specified argument was out of the range of valid values.'
Which after a little Googling I found out also has to do with the size of the file.
So basically my question is: How do I include files that are 4GB or larger?