Skip to content

Commit cee5ee7

Browse files
authored
file nesting include ( (#1224)
1 parent fe194a2 commit cee5ee7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Verify/buildTransitive/Verify.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup>
44
<None Update="**\*.received.*;**\*.verified.*" Condition="$(Language) == 'C#'">
5-
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0])</ParentFile>
5+
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0].Split('(')[0])</ParentFile>
66
<DependentUpon>%(ParentFile).cs</DependentUpon>
77
</None>
88
<None Update="**\*.received.*;**\*.verified.*" Condition="$(Language) == 'VB'">
9-
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0])</ParentFile>
9+
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0].Split('(')[0])</ParentFile>
1010
<DependentUpon>%(ParentFile).vb</DependentUpon>
1111
</None>
1212
<None Include="**\*.received.*;**\*.verified.*" Condition="$(Language) == 'F#'">

0 commit comments

Comments
 (0)