This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Description
When using VulkanSharp on OS X i keep getting the error as follows:
So i remapped the DLL in the 'Vulkan.dll.config' file and used version 1.2.0 and it resolved the error.
From
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<dllmap dll="vulkan-1" target="vulkan.so" />
</configuration>
to
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<dllmap dll="vulkan-1" target="Users/x/Documents/Development/Libraries/vulkansdk-macos-1.2.135.0/macOS/lib/libvulkan.dylib" />
</configuration>
But now it looks like the .config file is being overwritten sometimes by the build system so i have to keep changing the path back.
Cheers!