No Vulkan or DX12 In Game Settings #2820
|
Hi ! My Specs I have also tried vs2022 .csproj method. Nothing works 😔 |
Answered by
IndieDev99
Jun 20, 2025
Replies: 3 comments 3 replies
|
https://doc.stride3d.net/4.2/en/manual/graphics/graphics-api.html |
1 reply
|
The graphics profile determines what shader features are supported. The graphics backend is determined by the .csproj setting as stated by IXLLEGACYIXL. Once you set the the |
2 replies
0 replies
Answer selected by
IndieDev99
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment





The graphics profile determines what shader features are supported. The graphics backend is determined by the .csproj setting as stated by IXLLEGACYIXL.
Once you set the the Vulkan you should see the command --compile-property:StrideGraphicsApi=Vulkan in the build output to tell you that its using that backend.
Steps:
To run your projects through a different API than the default one, add the following line to the PropertyGroup of your executable's .csproj file:
Supported values are as follows:
Null
Direct3D11
Direct3D12
OpenGL
OpenGLES
Vulkan
You may also have to add
<
to your main .csproj, and don't forget to replace Version appropriately.