MSBuild RecursiveDir is empty
问题 I'm trying to make a custom MSBuild script to build all solutions in our repository: <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <SourceHome Condition=" '$(SourceHome)'=='' ">..\</SourceHome> <ToolsHome Condition=" '$(ToolsHome)'=='' ">.\Tools\</ToolsHome> <Configuration Condition=" '$(Configuration)'=='' ">Release</Configuration> <DestFolder Condition=" '$(DestFolder)'=='' ">.\$(Configuration)\</DestFolder> </PropertyGroup> <ItemGroup> <AllSolutions