diff options
| author | OpportunityLiu <[email protected]> | 2019-07-16 12:00:30 +0800 |
|---|---|---|
| committer | OpportunityLiu <[email protected]> | 2019-07-16 12:00:30 +0800 |
| commit | 1ab3e1b602a12a95d91433e8b91c2aec8146940f (patch) | |
| tree | a77c0ebe59918ec2ea6e76cf293154a065c7caf1 | |
| parent | 62ad5d370410c48991c3487c13c89c21e7292dc8 (diff) | |
fix
| -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"> |
