Skip to content

Commit 54cab93

Browse files
committed
Fix paths to make them cross-platform
1 parent 8ccf11f commit 54cab93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OpenXRGen/OpenXRGen/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ class Program
1010
{
1111
static void Main(string[] args)
1212
{
13-
string vkFile = "..\\..\\..\\..\\..\\KhronosRegistry\\xr.xml";
14-
string outputPath = "..\\..\\..\\..\\Evergine.Bindings.OpenXR\\Generated";
13+
string vkFile = Path.Combine("..", "..", "..", "..", "..", "KhronosRegistry", "xr.xml");
14+
string outputPath = Path.Combine("..", "..", "..", "..", "Evergine.Bindings.OpenXR", "Generated");
1515

1616
var openXRSpec = OpenXRSpecification.FromFile(vkFile);
1717
var openXRVersion = OpenXRVersion.FromSpec(openXRSpec, "AllVersions", openXRSpec.Extensions.ToImmutableList());

0 commit comments

Comments
 (0)