Skip to content

Commit

Permalink
file nesting include ( (#1224)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdean committed Jun 13, 2024
1 parent fe194a2 commit cee5ee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Verify/buildTransitive/Verify.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<Project ToolsVersion="4.0" xmlns="http:https://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<None Update="**\*.received.*;**\*.verified.*" Condition="$(Language) == 'C#'">
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0])</ParentFile>
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0].Split('(')[0])</ParentFile>
<DependentUpon>%(ParentFile).cs</DependentUpon>
</None>
<None Update="**\*.received.*;**\*.verified.*" Condition="$(Language) == 'VB'">
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0])</ParentFile>
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0].Split('(')[0])</ParentFile>
<DependentUpon>%(ParentFile).vb</DependentUpon>
</None>
<None Include="**\*.received.*;**\*.verified.*" Condition="$(Language) == 'F#'">
Expand Down

0 comments on commit cee5ee7

Please sign in to comment.