diff options
| author | OpportunityLiu <[email protected]> | 2019-07-22 17:55:46 +0800 |
|---|---|---|
| committer | OpportunityLiu <[email protected]> | 2019-07-22 17:56:04 +0800 |
| commit | 1cf79ba882fb24eca13829c12f6e39584ccd1f5f (patch) | |
| tree | 7e86499f2f2884e6db05d51c8442187160f6efb1 /xmake/plugins | |
| parent | 4fafbae0430e7f9b4a85d280d6fb0efbd2cf35b5 (diff) | |
fix bug when parapllel checking flags
Diffstat (limited to 'xmake/plugins')
| -rw-r--r-- | xmake/plugins/project/vsxmake/vsproj/Xmake.targets | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xmake/plugins/project/vsxmake/vsproj/Xmake.targets b/xmake/plugins/project/vsxmake/vsproj/Xmake.targets index 9276756a5..19bc4afaf 100644 --- a/xmake/plugins/project/vsxmake/vsproj/Xmake.targets +++ b/xmake/plugins/project/vsxmake/vsproj/Xmake.targets @@ -107,8 +107,7 @@ <File Include="$([MSBuild]::MakeRelative('$(XmakeProjectDirResolved)', $([System.IO.Path]::GetFullPath('%(SelectedFile.Identity)'))))" /> </ItemGroup> <PropertyGroup> - <FileList>@(File)</FileList> - <FileFlag>--files="$(FileList)"</FileFlag> + <FileFlag>--files="@(File)"</FileFlag> </PropertyGroup> <Message Text="$xmake build $(_XmakeCommonFlags) $(_XmakeBuildFileFlags) $(FileFlag) $(XmakeTarget)" Importance="High" /> <Exec StdOutEncoding="utf-8" StdErrEncoding="utf-8" Command="$(_XmakeEnv) |
