diff options
| -rw-r--r-- | xmake/plugins/project/vsxmake/vsproj/Xmake.props | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/xmake/plugins/project/vsxmake/vsproj/Xmake.props b/xmake/plugins/project/vsxmake/vsproj/Xmake.props index 243a114b2..20432fec3 100644 --- a/xmake/plugins/project/vsxmake/vsproj/Xmake.props +++ b/xmake/plugins/project/vsxmake/vsproj/Xmake.props @@ -49,14 +49,14 @@ <XmakeRunDir Condition="!$([System.IO.Path]::IsPathRooted('$(XmakeRunDir)'))">$([System.IO.Path]::GetFullPath('$(MSBuildProjectDirectory)\$(XmakeRunDir)'))</XmakeRunDir> <!-- normalize paths --> - <XmakeProgramDir>$([MSBuild]::NormalizePath('$(XmakeProgramDir)/'))</XmakeProgramDir> - <XmakeProjectDir>$([MSBuild]::NormalizePath('$(XmakeProjectDir)/'))</XmakeProjectDir> - <XmakeScriptDir>$([MSBuild]::NormalizePath('$(XmakeScriptDir)/'))</XmakeScriptDir> - <XmakeBuilDir>$([MSBuild]::NormalizePath('$(XmakeBuilDir)/'))</XmakeBuilDir> - <XmakeTargetDir>$([MSBuild]::NormalizePath('$(XmakeTargetDir)/'))</XmakeTargetDir> - <XmakeConfigDir>$([MSBuild]::NormalizePath('$(XmakeConfigDir)/'))</XmakeConfigDir> - <XmakeConfigFileDir>$([MSBuild]::NormalizePath('$(XmakeConfigFileDir)/'))</XmakeConfigFileDir> - <XmakeRunDir>$([MSBuild]::NormalizePath('$(XmakeRunDir)/'))</XmakeRunDir> + <XmakeProgramDir>$([System.IO.Path]::GetFullPath('$(XmakeProgramDir)/'))</XmakeProgramDir> + <XmakeProjectDir>$([System.IO.Path]::GetFullPath('$(XmakeProjectDir)/'))</XmakeProjectDir> + <XmakeScriptDir>$([System.IO.Path]::GetFullPath('$(XmakeScriptDir)/'))</XmakeScriptDir> + <XmakeBuilDir>$([System.IO.Path]::GetFullPath('$(XmakeBuilDir)/'))</XmakeBuilDir> + <XmakeTargetDir>$([System.IO.Path]::GetFullPath('$(XmakeTargetDir)/'))</XmakeTargetDir> + <XmakeConfigDir>$([System.IO.Path]::GetFullPath('$(XmakeConfigDir)/'))</XmakeConfigDir> + <XmakeConfigFileDir>$([System.IO.Path]::GetFullPath('$(XmakeConfigFileDir)/'))</XmakeConfigFileDir> + <XmakeRunDir>$([System.IO.Path]::GetFullPath('$(XmakeRunDir)/'))</XmakeRunDir> </PropertyGroup> <PropertyGroup Label="XmakeFlagsFallback"> |
