cake: Project Parser does not support Wildcards.

The following is a valid ItemGroup entry in a Visual Studio Project:

   <ItemGroup>
        <None Include="WildCardIncludes\**\*.txt">
            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
        </None>
    </ItemGroup>

However, the project parser will fail if it encounters such an entry.

About this issue

  • Original URL
  • State: open
  • Created 6 years ago
  • Comments: 15 (7 by maintainers)

Commits related to this issue

Most upvoted comments

I was just about to submit one. I did the work against the current project parser code, not the incubator. I will create a branch against the incubator, apply my changes there, and submit the PR using that. I will respond back when complete.