File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/ProjectTemplates/test Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -88,9 +88,12 @@ public async Task Template_Produces_The_Right_Set_Of_FilesAsync(string arguments
88
88
if ( relativePath . EndsWith ( ".csproj" , StringComparison . Ordinal ) ||
89
89
relativePath . EndsWith ( ".fsproj" , StringComparison . Ordinal ) ||
90
90
relativePath . EndsWith ( ".props" , StringComparison . Ordinal ) ||
91
+ relativePath . EndsWith ( ".sln" , StringComparison . Ordinal ) ||
91
92
relativePath . EndsWith ( ".targets" , StringComparison . Ordinal ) ||
92
93
relativePath . StartsWith ( "bin/" , StringComparison . Ordinal ) ||
93
- relativePath . StartsWith ( "obj/" , StringComparison . Ordinal ) )
94
+ relativePath . StartsWith ( "obj/" , StringComparison . Ordinal ) ||
95
+ relativePath . Contains ( "/bin/" , StringComparison . Ordinal ) ||
96
+ relativePath . Contains ( "/obj/" , StringComparison . Ordinal ) )
94
97
{
95
98
continue ;
96
99
}
You can’t perform that action at this time.
0 commit comments