From 677a84f64fc8f654161eb4978c71b4329e750470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Laban?= Date: Sun, 22 Sep 2024 21:10:52 -0400 Subject: [PATCH] fix: Ensure AOT profile path is absolute --- src/Uno.Wasm.Bootstrap/build/Uno.Wasm.Bootstrap.targets | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Uno.Wasm.Bootstrap/build/Uno.Wasm.Bootstrap.targets b/src/Uno.Wasm.Bootstrap/build/Uno.Wasm.Bootstrap.targets index ec42532e..47cc75f5 100644 --- a/src/Uno.Wasm.Bootstrap/build/Uno.Wasm.Bootstrap.targets +++ b/src/Uno.Wasm.Bootstrap/build/Uno.Wasm.Bootstrap.targets @@ -66,7 +66,7 @@ Condition=" '$(WasmShellGenerateAOTProfile)' == 'true' "> @@ -78,7 +78,7 @@ Condition=" '$(WasmShellEnableLogProfiler)' == 'true' "> @@ -165,6 +165,9 @@ -O0 + + @(WasmShellEnableAotProfile) $(WasmShellEnableJiterpreter) @@ -348,7 +351,7 @@ - $(_FilteredAotProfile) + $([System.IO.Path]::GetFullPath($(_FilteredAotProfile))